fork download
  1. //Jacklyn Isordia CSC5 Chapter 2, P. 83, #14
  2. //
  3. /**************************************************************
  4.  *
  5.  * Display Personal Information
  6.  * ____________________________________________________________
  7.  * This program display pieces of information on separate lines.
  8.  * ____________________________________________________________
  9.  * INPUT
  10.  * None
  11.  *
  12.  * OUTPUT
  13.  * Name
  14.  * Address (city, state, ZIP)
  15.  * Telephone number
  16.  * College major
  17.  *
  18.  **************************************************************/
  19. #include <iostream>
  20. using namespace std;
  21.  
  22. int main ()
  23. {
  24. // Output Personal Information
  25. cout << "Jacklyn Isordia" << endl
  26. << "Riverside, CA 92506" << endl
  27. << "951-222-8000" << endl
  28. << "Computer Engineering" << endl;
  29. return 0;
  30. }
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
Jacklyn Isordia
Riverside, CA 92506
951-222-8000
Computer Engineering