pat:hello world test

来源:互联网 发布:腾讯云域名实名认证 编辑:程序博客网 时间:2024/05/16 15:28

本题要求编写程序,输出一个短句“Hello World!”。

输入格式:

本题目没有输入。

输出格式:

在一行中输出短句“Hello World!”。


注意事项:

首先选择编程语言时选择:Java(gcj 4.7)

在编写java类时,类型必须定义为Main

输出格式一定要看清楚:print or println 一定要分清二者的区别 虽简单,但容易忽略

代码:

public class Main

{

public static void main(String args[])

{

System.out.print("Hello world!");

}

}



0 0