#3. say hello to the world

say hello to the world

Hello,World!

题目描述

编写一个能够输出 Hello,World! 的程序。

提示:

  • 使用英文标点符号;
  • Hello,World! 逗号后面没有空格。
  • HW大写字母。
  • 中间的逗号是英文的

代码框架参考

Java语言

public class Main{
    public static void main(String[] args) {
        //在这里写你的代码
    }
}

C语言

#include <stdio.h>
int main(){
    //在这里写你的代码
}

样例输出

Hello,World!