其他分享
首页 > 其他分享> > 每日一题:第三题

每日一题:第三题

作者:互联网

交互输入的四个整数,计算它们的和以及平均值,并输出,要求:平均值只保留2位小数。

#include"stdio.h"
void main()
{
int arr[4],i;
int sum=0;
float ave;
printf(“please input the numbers:\n”);
for(i=0;i<4;i++)

scanf("%d",&arr[i]);
sum+=arr[i];
}
ave=sum/4.0;
printf(“the sum is %d\nthe ave is %.2f\n”,sum,ave);
}

标签:arr,平均值,int,每日,第三,printf,ave,sum
来源: https://blog.csdn.net/m0_54639703/article/details/113189965