Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试在 GS 中进行 ascii 艺术挑战时遇到了一些问题,因为它需要你用 \ 符号完成一行。
问题在于"\"p程序会中断,因为它认为您已经转义了引号,并"\\"p 打印了两个反斜杠。我尝试过字符串连接,一次删除一个字符,打印子字符串等 - 似乎没有任何效果!
"\"p
"\\"p
我需要打印出这个字符串,那该怎么做呢?
似乎与的行为p是错误的。我会找地方举报的。
p
但是,"\\"它本身不会打印两个反斜杠;它打印一个。
"\\"
这是一个测试链接来证明它。
输出:
\
p用于打印转义字符串,使用putsorprint代替
puts
print