不是VIP会员,不能显示答案

题目解答

题目:
Program cx2016p1;
var a:integer;
c:string;
begin
readln(a);
c:='no test' ;
if a div 10>=3 then
if a div 10>=4 then
if a div 10>=5 then
if a div 10>=6 then c:='HIGH'
else c:='AAA' else c:='BBB' else c:='CCC' else c:='TEST';
writeln(c);
end.
输入:35
输出:CCC
考点:
分析:
解答:
评论:
老师: