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

题目解答

题目:
var
a,b,c,t:longint;
begin
readln(a,b,c);
if a>b then begin t:=a; a:=b; b:=t; end;
if a>c then begin t:=a; a:=c; c:=t; end;
if b>c then begin t:=b; b:=c; c:=t; end;
writeln(a,' ',b,' ',c);
end.
输入:
10 20 15

输出:10 15 20
考点:
分析:
解答:
评论:
老师: