Advertisement
irapilguy

Untitled

Jan 30th, 2021
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     int i = 0, a = 4;
  5.     while (i<a)
  6.         cout << a - i;
  7.     i++;
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement