Banner Home Page DIY Contests Problems Ranklist Status Statistics
1034数据再次加强,如果还能水过我不管了……

Hello World

Time Limit : 3000/1000ms (Java/Other)   Memory Limit : 65535/32768K (Java/Other)
Total Submission(s) : 212   Accepted Submission(s) : 77

Font: Times New Roman | Verdana | Georgia

Font Size:

Problem Description

计算机语言入门第一课,Hello World
顾名思义,写一个完整的程序,输出一行“Hello World”即可
C++程序的基本框架
#include<iostream>
using namespace std;
int main()
{
  return 0;
}
最开始学习的时候不要纠结这些东西是干啥的,当成必须要写的就好了
结合C++书上的基本程序部分内容,了解如何输出,完成此题

Input

此题没有输入

Output

输出一句“Hello World”即可

Sample Input

No Input

Sample Output

Hello World

Author

916852

Statistic | Submit | Back