Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1.  
  2. /*
  3.  
  4.  Tristan Larson
  5.  
  6.  ID:
  7.  
  8.  Janurary 22, 2017
  9.  
  10.  Lab 1
  11.  
  12.  This Lab will output my personal information to the screen
  13.  
  14.  */
  15.  
  16. #include <iostream>
  17.  
  18. using namespace std;
  19.  
  20. int main()
  21. {
  22.     cout << "Hello Mrs. Ruiz. My name is Tristan Larson " << endl;
  23.    
  24.     cout << " " << endl;
  25.    
  26.     cout << "My email is Tristanlarson2014@gmail.com " << endl;
  27.    
  28.     cout << " " << endl;
  29.    
  30.     cout << "The assignment is due on Janurary 22 at 11:45 pm " << endl;
  31.    
  32.     return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement