关于自学Pascal的一个小程序请大家帮我找出这个程序的错误来我是新手不知道。

311关注2612浏览

program lian_xi(input,output);
var
x,y,z,t:integer;
begin
writeln('please input x,y,z,t:');
readln(x,y,z);
if x<y then
be

共1条回答
  • Camila
    7年前

    编译错误已经帮你改掉了,另外你原来的缩进也太蛋疼了。
    第五行不需要让用户input‘t’
    第九行改成分号
    十一行‘<’后面丢东西了
    (行数指你的代码格式中)
    program lian_xi(input,output);
    var x,y,z,t:integer;
    begin
    writeln('please input x,y,z:');
    readln(x,y,z);
    if x<y

    0 14

发送