/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
#pragma warning(disable:4996)
int main()
{
int score;
char grade;
printf("νμμ μ μλ₯Ό μ
λ ₯νμΈμ: ");
scanf("%d",&score); // & λΆμ΄κΈ°
grade = (score>=90) ? 'A': // κ±°μ§μ΄λ©΄ μλλ‘ λ΄λ €κ°(μ°νμΌλ‘ μ΄λλ)
(score>=80) ? 'B':
(score>=70) ? 'C':
(score>=60) ? 'D': 'F'; // μλλ ν μ€μ§λ¦¬ μ€νλ¬Έ
printf("νμ : %c\n",grade);
return 0;
}