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
Camila 编译错误已经帮你改掉了,另外你原来的缩进也太蛋疼了。
第五行不需要让用户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