7

如何使用该writeln函数在 Pascal 中打印撇号?

例子:

writeln('My brother's book');

不会工作,因为没有s book“写”功能,所以编译器返回一个错误:

Fatal: Syntax error, ")" expected but "identifier S" found
Fatal: Compilation aborted
4

2 回答 2

12

根据Free Pascal Reference:单引号字符可以通过键入两次嵌入到字符串中:

writeln('By brother''s book');
于 2012-11-01T09:56:10.930 回答
0

在 Dev-Pascal 1.9.2 中,您将需要三个''',例如:

writeln ('My brother'''s book');
于 2013-12-04T15:42:41.267 回答