/******************************************************************************
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;
}