pascal 语言if语句 在线等 20 只要看看我哪里错了 输出不了

vara,b,c:longint;beginread(a,b,c);if(a<b)thena:=b;end.if(a<c)thena:=c;end.if(b<c)then... var
a,b,c:longint;
begin
read(a,b,c);
if (a<b) then a:=b;
end.
if (a<c) then a:=c;
end.
if (b<c) then c:=b;
end;
writeln(a,' ',b,' ',c);
end.
以上是我的 因为刚学所以很多不会 能run就是不能输出
题目是:任意输入三个数 a、b、c,按由大到小的顺序打印出来
展开
 我来答
Suck3r
2014-11-28 · TA获得超过924个赞
知道小有建树答主
回答量:689
采纳率:50%
帮助的人:240万
展开全部
看程序第6、8行,end后面要加逗号,所以程序如下
var
a,b,c:,tlongint;
begin
read(a,b,c);
if (a<b) then begin t:=a;a:=b;b:=t;t:=0;end;
if (a<c) then begin t:=a;a:=c;c:=t;t:=0;end;
if (b<c) then begin t:=b;b:=c;c:=t;t:=0;end;//=b;
writeln(a,' ',b,' ',c);
end.
对的,不对请追问
royalo
2014-11-28 · TA获得超过158个赞
知道答主
回答量:213
采纳率:0%
帮助的人:51.1万
展开全部
改成:
var
a,b,c:longint;
begin
read(a,b,c);
if (a<b) then a:=b;

if (a<c) then a:=c;

if (b<c) then c:=b;

writeln(a,' ',b,' ',c);
end.
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式