Guest User

Untitled

a guest
Nov 16th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main() {
  8.         string prompt("Wie lautet Ihr Name: "),
  9.         name,
  10.         linie( 40, '-'),
  11.         gesamt = "Hallo ";
  12.  
  13.         cout << prompt;
  14.         getline( cin, name);
  15.  
  16.         gesamt = gesamt + name;
  17.  
  18.         cout << linie << endl << gesamt << endl;
  19.         cout << "Ihr Name ist " << name.length() << " Zeichen lang!" << endl;
  20.         cout << linie << endl;
  21.  
  22.  
  23.         return 0;
  24. }
Add Comment
Please, Sign In to add comment