fork download
  1. //Diego Martinez CSC5 Chapter 2, P. 83,#14
  2.  
  3. /*******************************************************************************
  4. * Gathering Personal Information
  5. * ______________________________________________________________________________
  6. * This program displays prompts to gather pesonal information.
  7. *
  8. * There is no formula to follow.
  9. *_______________________________________________________________________________
  10. * INPUT
  11. *
  12. * OUTPUT
  13. * This program prints a series of prompts of personal information.
  14. *******************************************************************************/
  15.  
  16. #include <iostream>
  17. using namespace std;
  18.  
  19. int main()
  20. {
  21. //Output
  22. cout << "Your name\n" << "Your address with city,state,and ZIP code\n"
  23. << "Your telephone number\n" << "Your college major";
  24.  
  25. return 0;
  26. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Your name
Your address with city,state,and ZIP code
Your telephone number
Your college major