MeehoweCK

Untitled

Jan 28th, 2021
886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int tablica[10];
  8.     for(int i = 0; i < 10; ++i)
  9.     {
  10.         tablica[i] = i;
  11.         cout << tablica[i] << '\t';
  12.     }
  13.     cout << endl;
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment