输出hello+world的代码
时间: 2023-12-04 14:04:11 浏览: 71
helloworld 代码
以下是Java输出"hello+world"的代码:
```java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("hello" + "world");
}
}
```
阅读全文
helloworld 代码