简单的pascal程序
我写了一个简单的pascal程序。大家一看就知道是什么意思。rogramxuanze2;varx,xl:real;beginreadln('x=',x);ifx>0the...
我写了一个简单的pascal程序。
大家一看就知道是什么意思。
rogram xuanze2;
var
x,xl:real;
begin
readln('x=',x);
if x>0 then
begin
xl:=x*x;
writeln('xl=',xl);
writeln('x=',xl);
end;
else
begin
writeln('x=',x);
writeln('xl=',xl);
end;
end.
但用Linux下的FPC编译器,编译时提示错误如下:
[root@localhost pascal]# fpc xuanze2.pas
Free Pascal Compiler version 2.2.2 [2008/10/26] for x86_64
Copyright (c) 1993-2008 by Florian Klaempfl
Target OS: Linux for x86-64
Compiling xuanze2.pas
xuanze2.pas(5,13) Error: Variable identifier expected
xuanze2.pas(12,2) Fatal: Syntax error, ";" expected but "ELSE" found
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode (normal if you did not specify a source file to be compiled)
[root@localhost pascal]#
我是初学者,请问高手这是什么意思,谢谢。 展开
大家一看就知道是什么意思。
rogram xuanze2;
var
x,xl:real;
begin
readln('x=',x);
if x>0 then
begin
xl:=x*x;
writeln('xl=',xl);
writeln('x=',xl);
end;
else
begin
writeln('x=',x);
writeln('xl=',xl);
end;
end.
但用Linux下的FPC编译器,编译时提示错误如下:
[root@localhost pascal]# fpc xuanze2.pas
Free Pascal Compiler version 2.2.2 [2008/10/26] for x86_64
Copyright (c) 1993-2008 by Florian Klaempfl
Target OS: Linux for x86-64
Compiling xuanze2.pas
xuanze2.pas(5,13) Error: Variable identifier expected
xuanze2.pas(12,2) Fatal: Syntax error, ";" expected but "ELSE" found
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode (normal if you did not specify a source file to be compiled)
[root@localhost pascal]#
我是初学者,请问高手这是什么意思,谢谢。 展开
2个回答
展开全部
1.xuanze2.pas(12,2) Fatal: Syntax error, ";" expected but "ELSE" found指的是:
end;
else
else 的上一句不能有‘;’正确的写法应该是
end
else
2.xuanze2.pas(5,13) Error: Variable identifier expected指的是
当你执行else语句是 x1没有被赋值,所以不能写出,
错误就是这两个而已
end;
else
else 的上一句不能有‘;’正确的写法应该是
end
else
2.xuanze2.pas(5,13) Error: Variable identifier expected指的是
当你执行else语句是 x1没有被赋值,所以不能写出,
错误就是这两个而已
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询