C 언어는 학생 수와 각 사람의 성적을 입력하여 평균 성적을 계산한다.

3414 단어
학생 수와 모든 사람의 성적을 입력하고 평균 성적을 계산하는 프로그램을 작성한다.주의: 입력한 학생 수가 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; }

좋은 웹페이지 즐겨찾기