赞
踩
题目十五:
利用条件运算符的嵌套来完成此题:学习成绩》=90分的同学用a表示,60-89分之间的用b表示,60分以下的用c表示。
代码如下:
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- char i;
- int score;
- scanf("%d",&score);
- i=score>=90 ? 'a':(score>=60? 'b':'c');
- printf("%c",i);
- }
这是是利用函数的嵌套。
发文助手真的,我在用if语句写一遍叭。
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- int score;
- scanf("%d",&score);
- if(score>=90)
- {
- printf("a");
- }
- else if(score>=60&&score<90)
- {
- printf("b");
- }
- else if(score<60)
- {
- printf("c");
- }
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。