day9

作者: 今生何求惟你 | 来源:发表于2018-06-19 12:30 被阅读1次

题目:利用条件运算符的嵌套来完成此题:学习成绩>=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;

}

相关文章

网友评论

    本文标题:day9

    本文链接:https://www.haomeiwen.com/subject/ryjaeftx.html