Generation

generate functionMon, 21 Nov 2022

I need a code for a supermarket billing system

#include <iostream> using namespace std; int main() { float price, quantity, bill; cout << "Enter the price: "; cin >> price; cout << "Enter the quantity: "; cin >> quantity; bill = price * quantity; cout << "Bill = " << bill; return 0; }

Want to kickstart your project?Use the new AI Studio to create your code