URI - BEECROWD -Bee - 1000 - Hello World! - Solution in C++ | Beecrowd Online Judge Solution

URI - BEECROWD -Bee - 1000 - Hello World! - Solution in C++ | Beecrowd Online Judge Solutions 

                                                                           beecrowd | 1000

Hello World!

Jean Bez, beecrowd  Brasil

Timelimit: 1

Welcome to Beecrowd!

Your first program in any programming language is usually "Hello World!". In this first problem all you have to do is print this message on the screen.

Input

This problem has no input.

Output

You must print the message Hello World! and then the endline as shown below.

Input SampleOutput Sample

Hello World!

N.B: Don't copy paste the code as same. Just try to understand it and try yourself.

Explanation of URI - BEECROWD -Bee - 1000 - Hello World! - Solution in C++:


This program is very much easy for beginner friendly problem who wants to improve his / her  coding skills .
 
INPUT : You don't need to give any input to the computer .  So , there is not need to worry about  of taking any kind of input .

OUTPUT :   In C++ language you have to just use  cout command  just for display. 

Note: Don't Forget to use Capitalization and Punctuation , otherwise you will get             Wrong Answer. And always remember to add  endl otherwise you will get Presentation error

  URI / BEE 1000 Solution in C++ :  

 URI / BEECROWD Online Judge 1000 Solve  in C++ :                                          

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello World!" << endl;

    return 0;
}

0 Response to URI - BEECROWD -Bee - 1000 - Hello World! - Solution in C++ | Beecrowd Online Judge Solution

Post a Comment