The server encountered an internal error () that prevented it from fulfilling this request.
发布网友
发布时间:2022-04-25 16:48
我来回答
共1个回答
热心网友
时间:2023-10-19 23:39
//文件名:HelloWorld.java
public class HelloWorld
{
public static void main(String args[])
//向屏幕上写字符串"HelloWorld!"
{
System.out.println("HelloWorld!");
}
}追问厉害