Answer to Question #25370 in C++ for durga
write a c++ program for menu list with price display in c++?
1
2013-03-05T07:35:17-0500
#include <iostream>
using namespace std;
int main()
{
cout << "Price list:\n";
cout << "Product 1 100.5 $\n";
cout << "Product 2 400.1 $\n";
cout << "Product 3 145.7 $\n";
cout << "Product 4 56.1 $\n";
cout << "Product 5 56.3 $\n";
system("pause");
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment