main() { int i; int x[]={11,13,9,6,5}; cout << "Chisla mezhdu 0..10: "; for(i=0;i<5;i++){ if (x[i]>0&&x[i]<10) cout << x[i]; } return 0; }