Advertisement
MeehoweCK

Untitled

Jun 3rd, 2023
866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int tablica_liczb[10];
  8.     tablica_liczb[4] = 100;
  9.  
  10.     // wypisanie całej tablicy na ekran konsoli:
  11.     for (int i = 0; i < 10; ++i)
  12.         cout << tablica_liczb[i] << endl;
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement