Hello world!

View as PDF

Submit solution

Points: 0.01
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Author:
Problem type

Đây là 1 chương trình mẫu để sử dụng hệ thống IUHCoder.

Chương trình in ra dòng chữ "Hello world!" là chương trình đơn giản nhất có thể viết được bằng bất cứ ngôn ngữ nào.

Bây giờ bạn hãy viết chương trình in ra dòng chữ "Hello world!" ra màn hình.

Lưu ý: không được in thừa bấtt cứ ký tự gì ngoài output yêu cầu của đề bài.

Code mẫu

#include <stdio.h>

int main(){
    printf("Hello world!");
}

Output

Hello world!

Comments

Please read the guidelines before commenting.


There are no comments at the moment.