Advertisement
Josif_tepe

Untitled

Feb 17th, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 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 < 5; j++) { // j ciklus
  8.             for(int k = 0; k < 5; k++) {
  9.                 cout << i << " " << j << " " << k << endl;
  10.             }
  11.    
  12.         }
  13.     }
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement