code4sk/c/sourcecode/朱森森带领的奇妙冒险/C语言程序设计入门过关题集-顺序结构/HelloWorld.cpp
2023-12-15 22:01:24 +08:00

30 lines
401 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
7-1 Hello World!
分数 20
作者 C课程组
单位 浙江大学
本题要求编写程序输出一个短句“Hello World!”。
输入格式:
本题目没有输入。
输出格式:
在一行中输出短句“Hello World!”。
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
*/
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
printf("Hello World!");
return 0;
}