Advertisement
Josif_tepe

Untitled

Feb 17th, 2021
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     for(int i = 0; i < 5; i++) { // i ciklus
  7.         for(int j = 0; j < 10; j++) { // j ciklus
  8.             cout << i << " " << j << endl;
  9.         }
  10.     }
  11.     return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement