# -*- coding: UTF-8 -*-
'''
【程序15】
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,
60分以下的用C表示。
1.程序分析:(a>b)?a:b这是条件运算符的基本例子。
2.程序源代码:
不支持这个运算符
'''
score = int(input('input score:\n'))
if score >= 90:
grade = 'A'
elif score >= 60:
grade = 'B'
else:
grade = 'C'
print ('%d belongs to %s' % (score,grade))
C:
void py15()
{
int a;
char b;
printf("please input:\n");
scanf("%d",&a);
b=a>=90?'A':(a>=60?'B':'C');
printf("%d belong to %c",a,b);
}
阅读(458) | 评论(0) | 转发(0) |