标签:style blog color io ar strong sp div on
本题要求编写程序,输出一个短句“Hello World!”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“Hello World!”。
1 public class Main{ 2 public static void main(String args[]) { 3 System.out.print("Hello World"); 4 } 5 }
出现的错误:PAT要求类名必须为Main,提交时才不会出错,否则会跳出错误:The public type IO00 must be defined in its own file。
标签:style blog color io ar strong sp div on
原文地址:http://www.cnblogs.com/liyuhui20093357/p/3993224.html