Hello World

来源:互联网 发布:mac电脑管家怎么卸载 编辑:程序博客网 时间:2024/06/03 20:22

Problem A: 最简单的程序

Time Limit: 1 Sec  Memory Limit:128 MB
Submit: 6975  Solved: 3411
[Submit][Status][Web Board]

Description

输出一行“Hello world!”

Input

Output

Hello world!

Sample Input

Sample Output

Hello world!

HINT

Append Code


代码:

#include<stdio.h>int main(){    printf("Hello world!");}