int main(){ double a[100]; int i; for(i=0;i<100;i++){ scanf(“%lf”,&a[i]); if (a[i]<=10) printf(“A[%d] = %.1f\n”,i,a[i]*1.0); } return 0; }