delphi编程 将任意输入的三个数字按顺序输出
delphi编程将任意输入的三个数字按顺序输出,比如输入423要输出:234。给源代码。谢谢!!!!...
delphi编程 将任意输入的三个数字按顺序输出,比如输入 4 2 3 要输出:2 3 4 。
给源代码。
谢谢!!!! 展开
给源代码。
谢谢!!!! 展开
展开全部
program ConsoleApp;
{$APPTYPE CONSOLE}
uses
SysUtils;
procedure Swap(var n1,n2:Integer);
var
t:Integer;
begin
t:=n1;
n1:=n2;
n2:=t;
end;
var
a,b,c,t:Integer;
begin
{ TODO -oUser -cConsole Main : Insert code here }
write('input a,b,c:');
readln(a,b,c);
if a>b then
swap(a,b);
if a>c then
swap(a,c);
if b>c then
swap(b,c);
writeln('result:',a,' ',b,' ',c);
readln;
end.
{$APPTYPE CONSOLE}
uses
SysUtils;
procedure Swap(var n1,n2:Integer);
var
t:Integer;
begin
t:=n1;
n1:=n2;
n2:=t;
end;
var
a,b,c,t:Integer;
begin
{ TODO -oUser -cConsole Main : Insert code here }
write('input a,b,c:');
readln(a,b,c);
if a>b then
swap(a,b);
if a>c then
swap(a,c);
if b>c then
swap(b,c);
writeln('result:',a,' ',b,' ',c);
readln;
end.
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询