题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示, 60分以下的用C表示。
#include <stdio.h>
main()
{
int score,grade;
printf("Please enter the score:\n");
scanf("%d",&score);
grade = score >= 60?(score >= 90?'A' : 'B') : 'C';
printf("\n%d belong to %c",score,grade);
return 0;
}
网友评论