这个pascal程序错哪了?
发布网友
发布时间:2024-10-15 17:05
我来回答
共3个回答
热心网友
时间:2024-10-16 05:34
初步看了下,应该是end. 上面一句错了。
正确的是这样的:
writeln('the.........',length*ledth,'..........');追问width是宽度,没打错
热心网友
时间:2024-10-16 05:34
Var length,width:integer;
Begin
write('Please enter the length and width you want tu calculate:');
readln(length,width);
writeln('THE AREA OF THE RECTANGLE IS',length*width,'SQUARE METERS');
End.
把program去掉追问好像也不对
追答你要对比我的代码和你代码不同的地方
我的已经编译过了
热心网友
时间:2024-10-16 05:35
编译不成功