say hello to the world
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
Hello,World!
题目描述
编写一个能够输出 Hello,World!
的程序。
提示:
- 使用英文标点符号;
Hello,World!
逗号后面没有空格。H
和W
为大写字母。- 中间的逗号是英文的
代码框架参考
Java语言
public class Main{
public static void main(String[] args) {
//在这里写你的代码
}
}
C语言
#include <stdio.h>
int main(){
//在这里写你的代码
}
样例输出
Hello,World!