編寫程序,從鍵盤輸入某學生的三科成績,求出總分和平均分,找出最高分和最低分.
題目:
編寫程序,從鍵盤輸入某學生的三科成績,求出總分和平均分,找出最高分和最低分.
解答:
#include
main()
{ int score[3],max,min,sum=0,i;
float ave;
printf("input three scores of the student:");
for(i=0;i
題目:
編寫程序,從鍵盤輸入某學生的三科成績,求出總分和平均分,找出最高分和最低分.
解答:
#include
main()
{ int score[3],max,min,sum=0,i;
float ave;
printf("input three scores of the student:");
for(i=0;i
添加新評論