13 lines
198 B
C
13 lines
198 B
C
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
int mark;
|
|
printf("Please input your score:");
|
|
scanf("%d",&mark);
|
|
printf("Your grade: ");
|
|
if (mark>=90)
|
|
{
|
|
printf("A");
|
|
}
|
|
|
|
} |