Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string name;
  8. int age;
  9. string Lname;
  10. cout << "Enter your name" << endl;
  11. cin >> name;
  12. cout << "Enter your last name" << endl;
  13. cin >> Lname;
  14. cout << "Enter your age" << endl;
  15. cin >> age;
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement