Guest User

Untitled

a guest
Jul 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include<iostream.h>
  2. #include<string.h>
  3. using namespace std;
  4.  
  5. void main()
  6.  
  7. {
  8.  
  9.  
  10. string firstname, lastname;
  11. string address;
  12.  
  13. cout<<"What is your first name? "<<endl;
  14. cin>>firstname;
  15. cout<<"What is your last name? "<<endl;
  16. cin>>lastname;
  17. cout<<"Have a nice day "<<firstname<<" "<<lastname<<endl;
  18.  
  19. }
Add Comment
Please, Sign In to add comment