#include <iostream> #include <conio.h> using namespace std; main() { int a[5]={4,6,7,0,2}; int x; for(x=0;x<=4;x++) { cout << a[x] << "n"; } getch(); return 0; }
#include <iostream> #include <conio.h> using namespace std; main() { int a[5]={4,6,7,0,2}; int x; for(x=0;x<=4;x++) { cout << a[x] << "n"; } getch(); return 0; }