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; }