Guest User

Untitled

a guest
Oct 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Funzt nicht:
  2.  
  3.  
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. int Main()
  9.  
  10. {
  11. cout << "Hallo Welt";
  12. cin.get();
  13. }
  14.  
  15.  
  16.  
  17.  
  18.  
  19. Funzt:
  20.  
  21. #include <iostream>
  22.  
  23. using namespace std;
  24. int main()
  25.  
  26. {
  27. cout << "Hallo Welt";
  28. cin.get();
  29. }
Add Comment
Please, Sign In to add comment