如何编写java程序以便输出以下行:(String)

时间:2016-01-26 00:24:28

标签: java string

a'和a“?或者介于”和“之间?”

//我无法让程序输出\“。

2 个答案:

答案 0 :(得分:2)

如果我理解你的问题,你需要逃避\。像,

System.out.println("a ' and a \"? Or between a \" and a \\\"?");

输出(按要求)

a ' and a "? Or between a " and a \"?

答案 1 :(得分:0)

您可以通过转义输出反斜杠:

System.out.println("\\");