1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<fstream>
using namespace std;
class Food
{
public:
void showData();
string bt, type;
Food(string, string);
};
Food::Food(string bt, string type)
{
}
int main()
{
string type, bt;
cout << "Please enter a type for food 1: ";
getline(cin, type);
cout << "Please enter a cooking style for food 1 (ENTER for none): ";
getline(cin, bt);
Food f1(type, bt);
cout << "\nPlease enter a type for food 2: ";
getline(cin, type);
cout << "Please enter a cooking style for food 2 (ENTER for none): ";
getline(cin, bt);
Food f2(type, bt);
cout << "\nPlease enter a type for food 3: ";
getline(cin, type);
cout << "Please enter a cooking style for food 3 (ENTER for none): ";
getline(cin, bt);
Food f3(type, bt);
cout << "\nPlease enter a type for food 4: ";
getline(cin, type);
cout << "Please enter a cooking style for food 4 (ENTER for none): ";
getline(cin, bt);
Food f4(type, bt);
cout << "\nData for food 1:" << endl;
f1.showData();
cout << "\nData for food 2:" << endl;
f2.showData();
cout << "\nData for food 3:" << endl;
f3.showData();
cout << "\nData for food 4:" << endl;
f4.showData();
return 0;
}
|