如何使用该writeln
函数在 Pascal 中打印撇号?
例子:
writeln('My brother's book');
不会工作,因为没有s book
“写”功能,所以编译器返回一个错误:
Fatal: Syntax error, ")" expected but "identifier S" found
Fatal: Compilation aborted
如何使用该writeln
函数在 Pascal 中打印撇号?
例子:
writeln('My brother's book');
不会工作,因为没有s book
“写”功能,所以编译器返回一个错误:
Fatal: Syntax error, ")" expected but "identifier S" found
Fatal: Compilation aborted
根据Free Pascal Reference:单引号字符可以通过键入两次嵌入到字符串中:
writeln('By brother''s book');
在 Dev-Pascal 1.9.2 中,您将需要三个'''
,例如:
writeln ('My brother'''s book');