1014. 寫評語 (Standard IO)

Harker11發表於2020-10-02
#include<stdio.h>
int main()
{
	int score;
	scanf("%d", &score);
	if (score >= 90)printf("Excellent");
	else if (score >= 80)printf("Good");
	else if (score >= 60)printf("Pass");
	else printf("Fail");
	return 0;
}

相關文章