#include <stdio.h>

int main()
{
    int age;
    float height;
    char grade;
     

    printf("당신의 나이는 몇 살 입니까?");
    scanf("%d",&age);
    printf("당신은 10년 뒤에 %d살 입니다\n",age+10);
    printf("당신의 키는 얼마입니까?");
    scanf("%f",&height);
    printf("당신의 키는 %f 입니다\n",height);
    printf("당신의 학점은 무엇입니까?");
    scanf(" %c",&grade);
    printf("당신의 학점은 %c입니다.\n",grade);
    
    if(grade=='A')
        printf("best\n");
    else if(grade=='B')
        printf("good\n");
    else 
        printf("bad\n");
       
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: