Advertisement
MaxxxxiorS

Na dwójkę 17.03.2021

Mar 17th, 2021
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string imie = "Maksymilian";
  8.     int i = 0;
  9.  
  10.     do
  11.     {
  12.         cout << imie << endl;
  13.         i++;
  14.     } while (i < 10);
  15.    
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement