OpenJudge 01:Hello, World!

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

[http://noi.openjudge.cn/ch0101/01/01/.

Author
Hsukqi Lee
Posted on

2022-02-19

Edited on

2022-08-04

Licensed under

CC BY-NC-ND 4.0

# Programing  Cpp  OpenJudge  NOI  NOIP

Comments

Name
Mail
Site
None yet