c语言问题,求高手解答!!

2024-11-22 19:26:15
推荐回答(5个)
回答(1):

#include
#define SUM 100000
int main()
{
float amount,aver,total;

int i;
for(i = 1, total = 0; i<=1000; i++)
{
printf("please enter amount:\t");
scanf("%f", &amount);
total = total + amount;
if(total>=SUM)
{
break;
}
}
aver = total/i;
printf("num = %d\naver = %10.2f\n", i, aver);
return 0;
}

回答(2):

你的for 循环 没有{} 加一个{} 就可以了。

回答(3):

{前加printf(“please enter ”)
break后加}

回答(4):

你这个要实现什么功能

回答(5):

什么问题