C言語は学生数と一人当たりの成績を入力し、平均成績を計算する.

3380 ワード

プログラムを作成し、学生数と一人当たりの成績を入力し、平均成績を計算します.注意:入力した学生数が0以下の場合、出力平均成績は0点です.テストサンプルは次のとおりです.
入力:3 90 70 80出力:the number of students:the scores:average=80.00入力:-1出力:the number of students:the scores:average=0.00入力:4 78.5 26 73.6 90.1出力:the number of students:the scores:average=67.05
手順は次のとおりです.
#include
	int main()
	{ 
	  int a,i;
	  double b,c=0;
	  scanf("%d",&a);
	  if(a<=0)
	  {
		  printf("the number of students:the scores:average=0.00
"
); } else { for(i=1;i<=a;i++) {scanf(" %lf",&b); /*%lf */ c=c+b;} printf("the number of students:the scores:average=%.2f
"
,c/a); } return 0; }