Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <iostream>
- using namespace std;
- ////////////////////////////////////////////////////////////
- int main()
- {
- int ma[15] = { 10, 11, 12, 13, 14 };
- int i = 2;
- ma[7] = 1000000;
- for(;i < 10; i++)
- {
- cout << "ma["<< i << "] = " <<ma[i] << endl;
- }
- cin >> i;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement