90점~100점이면 A가 출력됨
80점~89점이면 B가 출력됨
70점~79점이면 C가 출력됨
60~69점이면 D가 출력됨
그 이하의 점수는 F가 출력됨
조건
1) main(if)(잘모름)
2) 함수 전체 처리
3) 값(main)→함수 넘겨주고 처리
함수로 짜야 하는 것 같습니다
제 생각에는
#include <stdio.h>
int main (void)
{
int score;
scanf("%d", &score);
if( score >= 90 && score <= 100)
{
printf("A ");
}
else if( score >= 80 && score <= 89)
{
printf("B ");
}
else if( score >= 70 && score <= 79)
{
printf("C ");
}
else if( score >= 60 && score <= 69)
{
printf("D ");
}
else
{
printf("F ");
}
}
이것을 함수의 형태로 만들어야 한다는 것 같은데 어떻게 해야 하나요...ㅠㅠㅠㅠㅠ