Advertisement
MeehoweCK

Untitled

Apr 16th, 2021
661
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include <iostream>     // dołączenie biblioteki
  2.  
  3. using namespace std;    // przestrzeń nazw std::
  4.  
  5. int main()              // nagłówek funkcji głównej
  6. {
  7.     cout << "Hello world!" << endl;     // wypisanie na ekran napisu "Hello world!", endl - przejście do następnego wiersza
  8.     return 0;           // zwrócenie wartości 0 i wyjście z funkcji głównej
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement