0
以下のコードは例外をスローします。どうして?パスカルプログラムの不正な式
program Masquerade(input, output);
Begin
var amount, count, money : integer;
writeln ('Welcome to the Wonder True Masquerade Band');
writeln ('Would you like to proceed? Yes/No');
var choice : String;
readln (choice);
End.
はエラーをスローします:セミコロンは行くべきfatal: syntax error ";" expected but "identifier AMOUNT" found
?
。コードブロック内の変数をパスカルで宣言することはできません。 – CodesInChaos