Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int niza[5];
- niza[0] = 1;
- niza[1] = 2;
- niza[2] = 3;
- niza[3] = 4;
- niza[4] = 5;
- cout << niza[0] << endl;
- cout << niza[1] << endl;
- cout << niza[2] << endl;
- cout << niza[3] << endl;
- cout << niza[4] << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement