Description
For most programming languages, writing a program that can output "Hello, World!" Is often the most basic and simplest. Therefore, this program is often used as the first procedure written by a beginner to contact a new programming language, and it is often used to test and develop and compile the environment.
Now you need to complete such a program.
Input
none.
OUTPUT
One line contains only one string: "Hello, World!"
Input Sample
OUTPUT SAMPLE
Hello, World!
hint
Use English punctuation symbols; there is a space behind the comma.
idea
When doing such topics, it is recommended to copy the output of the sample directly.
Answer
CPP
include
using namespace std;
int Main ()
{{
COUT << "Hello, World!";;
Return 0;
}
Result
Used Memory: 128KB
Run time: 1ms
Language: G ++
Submit time: 2019-03-24 08:59:12
Proplem Link
[http://noi.openjudge.cn/ch0101/01/01/.
OpenJudge 01:Hello, World!
Comments