18.10 문제 질문 드립니다
, 김 선우님이 작성#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main()
{
int a, b, c, d;
scanf("%d %d %d %d", &a, &b, &c, &d);
if (a >= 0 && a <= 100 &&
b >= 0 && b <= 100 &&
c >= 0 && c <= 100 &&
d >= 0 && d <= 100)
if ((a + b + c + d) /4 >= 85)
{
printf("합격\n");
}
else
{
printf("불합격\n");
}
else
printf("잘못된 점수\n");
return 0;
}
80 80 80 80을 입력하면 불합격이 나와야 하는데
합격이 뜹니다 어디가 잘못된 것인가요?