System.out.println(“ ”+1);
时间: 2024-05-21 22:10:39 浏览: 93
细聊java中的System.out.println()
There is an error in this statement. The quotation marks are not paired properly. Also, there is a space before the number 1 which may or may not be intentional. Here is a corrected version of the statement:
System.out.println("1");
阅读全文