Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. //
  2. // main.cpp
  3. // HalloWelt
  4. //
  5. // Created by Jannis Seemann on 06.06.17.
  6. // Copyright © 2017 Jannis Seemann. All rights reserved.
  7. //
  8.  
  9. #include <iostream>
  10. #include <string>
  11.  
  12. using namespace std;
  13.  
  14. int main(int argc, const char * argv[]) {
  15. string firstname;
  16. cin >> firstname;
  17.  
  18. cout << "Hallo " << firstname << "!";
  19.  
  20.  
  21. /*
  22. double a;
  23. double b;
  24.  
  25. cin >> a;
  26. cin >> b;
  27.  
  28. double sum = a + b;
  29. cout << sum << endl;
  30. */
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement