Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. using namespace std;
  5.  
  6. void main() {
  7.     int x;
  8.     cin >> x;
  9.     for(int i = 0; i != x; i++){ // цикл
  10.         cout << "Plus ultra!\n";
  11.     }
  12.     std :: system("pause")
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement