我使用Pascal新手,我必须编写一个名为Seven 11的游戏,你们能给我一些提示吗?
我试过了:
program sevele;
var capitalinicial: integer
begin
writeln('ingrese un capital')
readln(capitalinicial)
writeln('su capital es capitalinicial')
答案 0 :(得分:1)
回答你的问题,你需要知道一些事情:
你必须在每个句子的末尾添加一个分号;
,除了表示控制结构的开头的关键字(for,while,if,else等)或{{1}之后}或begin
关键字。
使用相同数量的end
和begin
s关键字。请注意,程序中的最后一个end
后跟一个点。
使用end
时,您可以打印一个或多个变量或字符串。你必须使用简单的引号writeln
来打印字符串,只需要一个没有任何引号的变量名来打印它的价值,你也需要用逗号分隔不同的参数',& #39;
例如:
'
您尝试编写的代码可能是:
program example;
var
a,b:integer;
begin
a:=3;
b:=5;
writeln ('this is just a string');
writeln (a);
writeln (a,b);
writeln ('the value of a is: ',a,' and the value of b is: ',b);
readln;
end.
答案 1 :(得分:0)
这就是它的工作原理
program sevele;
var capitalinicial: integer;
begin
writeln('ingrese un capital');
readln(capitalinicial);
writeln('su capital es',capitalinicial);
end.