//https://www.acwing.com/problem/content/741/
739. 数组选择
include [HTML_REMOVED]
int main()
{
double A[100];
for(int i=0;i<=99;i)
scanf(“%lf\n”,&A[i]);
for(int j=0;j<=99;j)
{
if(A[j]<=10)
{
printf(“A[%d] = %.1f\n”,j,A[j]);
}
}
return 0;
}