Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. string prompt ("Wie lautet Ihr Name: ");
  2. string name;
  3. string linie(40, '-');
  4. string gesamt = "Hallo ";
  5.  
  6. cout << prompt;
  7. cin >> name;
  8. gesamt = gesamt +name;
  9.  
  10. cout << linie << endl
  11. << gesamt << endl
  12. << "Ihr Name ist "
  13. << name.length()<< " Zeichen lang!" << endl
  14. << linie << "\n \n \n \n \n";
  15.  
  16. system("PAUSE");
  17. system("cls");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement