fork download
  1. //Andrew Alspaugh CSC5 Chapter 2, P. 84 #14
  2. //
  3. /******************************************************************************
  4.  *
  5.  * Display Personal Information
  6.  * ____________________________________________________________________________
  7.  * This program displays Andrew Alspaughs pesonal info on one cout command but
  8.  * each piece is broken into different lines
  9.  * ____________________________________________________________________________
  10.  ******************************************************************************/
  11. #include <iostream>
  12. using namespace std;
  13.  
  14. int main()
  15.  
  16. {
  17. //DISPLAY PERSONAL INFO USING ONE cout LINE
  18. cout << "Andrew Alspaugh\n" << "25522 Evans Pointe, Dana Point, CA 92629\n" << "telephone 949-289-7436\n" << "college major I got no fricken clue";
  19. return 0;
  20. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Andrew Alspaugh
25522 Evans Pointe, Dana Point, CA 92629
telephone 949-289-7436
college major I got no fricken clue