人工智能学习

Aizu ITP1_1_A - Hello World

本文主要是介绍Aizu ITP1_1_A - Hello World,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Problem

Welcome to Online Judge!

Write a program which prints "Hello World" to standard output.

Input

There is no input for this problem.

Output

Print "Hello World" in a line.

Sample Input

No input

Sample Output

Hello World

Solution

#include <iostream>

using namespace std;

int main() {
    cout << "Hello World" << endl;
    return 0;
}
这篇关于Aizu ITP1_1_A - Hello World的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!