3132 - Hello world!
多人学习程序是从经典的hello world!开始的。今天我们也将写下人生的第一个程序,你能写出这个hello程序吗?
Input
无
Output
Hello world!
Examples
Input
Output
Solution C
#include<stdio.h> int main() { printf("hello world"); return 0; }
Solution C++
#include<iostream> using namespace std; int main() { cout<<"Hello World!"; return 0; }