Advertisement
Varasku

Pierwszy program C++

Feb 27th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  5.  
  6. int main(int argc, char** argv) {
  7.  
  8. cout << "Witaj świecie \n" << endl;
  9. int liczba;
  10. cout << "Podaj liczbe calkowita: ";
  11. cin >> liczba;
  12. float rzecz;
  13. cout << "Podaj liczbe rzeczwiste: ";
  14. cin >> rzecz;
  15.  
  16. system ("pause");
  17.  
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement