#include<stdio.h>
int main(void)
{
int num, score, max, min, total, maxnum, minnum;
double avg;
int rtn;
printf("번호,점수-->");
rtn = scanf("%d, %d", &num, &score);
while (rtn != EOF && score <= 100 || score >= 0)
{
total =+ score;
if (max < score)
max = score;
maxnum = num;
if else (min > score)
min = score;
minnum = num;
printf("번호,점수-->");
rtn = scanf("%d, %d", &num, &score);
}
avg = (double)total / num;
printf("평균:%3.1f\n", &avg);
printf("최고점 번호: %d 점수: %d", &maxnum, &max);
printf("최저점 번호: %d 점수: %d", &minnum, &min);
return 0;
}
실행 하면 if문에 에러가 있다고 나오는데요ㅠㅠ
무엇이 문제인지 아무리 생각해도 모르겠어서요ㅠㅠ
댓글 분란 또는 분쟁 때문에 전체 댓글이 블라인드 처리되었습니다.