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

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