Advertisement
Spocoman

02. Nums 1...10

Aug 22nd, 2024
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     cout << 1 << endl;
  6.     cout << 2 << endl;
  7.     cout << 3 << endl;
  8.     cout << 4 << endl;
  9.     cout << 5 << endl;
  10.     cout << 6 << endl;
  11.     cout << 7 << endl;
  12.     cout << 8 << endl;
  13.     cout << 9 << endl;
  14.     cout << 10 << endl;
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement