fork download
  1. //Adhira Balasubramani CH 2 HW
  2.  
  3. /*******************************************************************************
  4. *collect personal information
  5. _____________________________________________________________________________
  6. * program collects name, address, phone number, and college major. and displays
  7. * the collected information back.
  8. ______________________________________________________________________________
  9. *
  10. *IN
  11. * the user will enter first and last name, homeaddress, phone number, and college major.
  12. *
  13. *OUTPUT
  14. * displays the entered information.
  15. *
  16. *******************************************************************************/
  17. #include <iostream>
  18. #include <string>
  19. using namespace std;
  20.  
  21. int main ( )
  22. {
  23. string fname, lname, homeaddress, city, state, zipcode, phonenum, collegemj;
  24.  
  25. //information from user.
  26. cout << "what is your first name ?"<<endl;
  27. cin >> fname;
  28.  
  29. cout << "what is your last name ?"<<endl;
  30. cin >> lname;
  31.  
  32. cout << "what is your address?"<<endl;
  33. cin >> homeaddress;
  34.  
  35. cout << "what is your city?"<<endl;
  36. cin >> city;
  37.  
  38. cout << "what is your state?"<<endl;
  39. cin >> state;
  40.  
  41. cout << "what is your zip code?"<<endl;
  42. cin >> zipcode;
  43.  
  44. cout << "what is your phone number?"<<endl;
  45. cin >> phonenum;
  46.  
  47. cout << "what is Your college major?" <<endl;
  48. cin >> collegemj;
  49.  
  50. cout << " " << endl;
  51.  
  52. //show collected information from user.
  53. cout << "your name is: " << fname << " " << lname << endl;
  54. cout << "your address is: " << homeaddress << ", " <<city<< ", " <<state<< ", " <<zipcode << endl;
  55. cout << "your phone number is: " << phonenum << endl;
  56. cout << "your college major is: " << collegemj << endl;
  57. return 0;
  58. }
Success #stdin #stdout 0.01s 5288KB
stdin
adhira
bala
1234
missionviejo
california
92688
12345678
compsci
stdout
what is your first name ?
what is your last name ?
what is your address?
what is your city?
what is your state?
what is your zip code?
what is your phone number?
what is Your college major?
    
your name is: adhira bala
your address is: 1234, missionviejo, california, 92688
your phone number is: 12345678
your college major is: compsci