
Hello World!
Jean Bez, beecrowd Brasil
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 Sample | Output Sample |
Hello World! |
N.B.: It's better if you solve this by your own. Thank you!
URI - BEECROWD Online Judge 1000 Solve in C :
//Solved by Intesar#include <stdio.h>int main(){printf("Hello World!\n");return 0;}
0 Comments