system.out.println()括号中能填什么不能填什么,因为本来想填"/\",结果不行,所以来问一下
想要输出“/\”,正确的写法是“System.out.println("/\\");”。因为在Java中,“\\”会被转义成“\”。