728x90
GPA 계산기 예제코드: if(), else if()
포스트 난이도: HOO_Intern
# Example Codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
float gpa;
printf("Enter the GPA:\n");
scanf("%f.2", &gpa);
if (gpa > 3.9 || gpa == 3.9){
printf("Dean's list.\n");
}
else if(gpa < 2.00){
printf("GPA is below the graduation requirement.\n");
}
printf("Coded by HOO.\n");
return 0;
}
Enter the GPA:
3.9
Dean's list.
Coded by HOO.
Enter the GPA:
1.96
GPA is below the graduation requirement.
Coded by HOO.
728x90
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples] 세금 계산기 예제코드: if, else if (0) | 2023.02.19 |
---|---|
[C Examples] 24시간을 12시간 표기로 바꾸기 예제코드: if(), else (0) | 2023.02.18 |
[C Examples] 7 Digit ISSN, 8번째 숫자 산출하기 예제코드: if(), else(), %d (0) | 2023.02.15 |
[C Examples] 달러를 동전으로 바꾸는 예제코드 (0) | 2023.02.08 |
[C Examples/Q&A] 체질량 지수(BMI) 계산하는 예제코드: if, else if, && (0) | 2023.02.07 |
댓글