用java写一个Helloworld
时间: 2023-05-23 20:01:53 浏览: 92
Sure! Here's the code for a basic "Hello World" program in Java:
```
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
```
Hope that helps! Let me know if you have any other questions.
阅读全文