Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- void main(){
- int pole[] = { 5, 12, 55, 74, 86, 25, 55, -4 };
- int n = sizeof(pole) / 4;
- int x = 0;
- while (x != n-1){
- cout << pole[x];
- cout << "\n";
- x += 1;
- }
- system("pause");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement