hello world java
时间: 2023-09-11 11:07:41 浏览: 104
Hello! If you want to print "Hello World" in Java, you can use the following code:
```java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
```
This code defines a class called `HelloWorld` and within it, there is a `main` method that prints "Hello World" using the `System.out.println()` method.
阅读全文