Advertisement
Guest User

Untitled

a guest
May 29th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // First - pierwszy program w C++
  2.  
  3. #include <iostream>
  4. #include <conio.h>
  5.  
  6. void main()
  7. {
  8. std::cout << "Hurra! Napisalem pierwszy program w C++!" << std::endl;
  9. getch();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement