15分钟完成。
应该写成A[i]<=10,我没有写等于10。
#include<iostream>
#include<iomanip>
using namespace std;
const int N=100;
double A[N];
int main()
{
//freopen("xxx.in","r",stdin);
//freopen("yyy.out","w",stdout);
for(int i=0;i<N;i++)
{
cin >> A[i];
}
for(int i=0;i<N;i++)
{
if(A[i]<=10)
cout << fixed << setprecision(1) << "A[" << i << ']' << " = " << A[i] << endl;
}
//fclose(stdin);
//fclose(stdout);
return 0;
}