using namespace std; int main(){ for(int i=0;i<100;i++){ float x; cin>>x; if(x<=10){ printf(“A[%d] = %.1f\n”,i,x); } } return 0; }