Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. {
  2.  
  3. string nameInvited, nameInviting, place, date;
  4. double time;
  5.  
  6. cout << "Välkommen till inbjudningsprogrammet." << endl << endl;
  7.  
  8. cout << "Namn på den som bjuder: " << endl;
  9. cin >> nameInviting;
  10.  
  11. cout << "Plats för tillställningen: " << endl;
  12. cin.ignore();
  13. getline(cin, place);
  14.  
  15. cout << "Datum: " << endl;
  16. cin.ignore();
  17. getline(cin, date);
  18.  
  19. cout << "Tid: " << endl;
  20. cin >> time;
  21.  
  22. cout << "Namn på den som ska bjudas: " << endl;
  23. cin >> nameInvited;
  24.  
  25.  
  26.  
  27.  
  28. return 0;
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement