This simple program will solve the price of a certain product using two dimensional array as our data structure in C++. I hope you will find my work useful in learning C++ programming. Thank you.
Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Program Listing
#include <iostream>
using namespace std;
main() {
string product[4] = {"Nido","Bear Brand",
"Anchor Milk", "Milo"};
int price[4][1];
int solve=0;
int add=0,change=0, pay=0;
cout << "Product Price Solver";
cout << "\n\n";
for (int a=0; a<4; a++) {
for (int b=0; b<1; b++)
{
cout << "Enter " <<product[a]
<< " price : ";
cin >> price[a][b];
add+=price[a][b];
}
solve= add;
}
cout << "\n\n";
cout << "Total Amount Cost :=>" << solve;
cout << "\n\n";
cout << "Amount Payed : ";
cin >> pay;
change = (pay-solve);
cout << "Your change is P " << change
<< ".";
cout << "\n\n";
system("pause");
}
No comments:
Post a Comment