1014-寫評語

代碼純屬原創,如有雷同,純屬巧合!

#include <stdio.h>
int main(void)
{
	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;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章