- 博客(4)
- 收藏
- 关注
原创 实验1-4 输出三角形 (5分)
实验1-4 输出三角形 (5分) 本题要求编写程序,输出指定的由“*”组成的三角图案。 输入格式: 本题无输入 输出格式: 按照下列格式输出由“*”组成的三角图案。 / **** / *** / ** / * #include <stdio.h> int main() { printf("****\n"); printf("***\n"); printf("**\n"); printf("*\n"); } ...
2020-11-02 19:34:14 669
原创 实验1-3 Programming in C is fun! (5分)
实验1-3 Programming in C is fun! (5分) 本题要求编写程序,输出一个短句“Programming in C is fun!”。 输入格式: 本题目没有输入。 输出格式: 在一行中输出短句“Programming in C is fun!”。 #include <stdio.h> int main() { printf("Programming in C is fun!"); } ...
2020-11-02 19:30:47 126
原创 实验1-2 Welcome to You! (5分)
实验1-2 Welcome to You! (5分) 本题要求编写程序,输出一个短句“Welcome to You!”。 输入格式: 本题目没有输入。 输出格式: 在一行中输出短句“Welcome to You!”。 #include <stdio.h> int main() { printf("Welcome to You!"); } ...
2020-11-02 19:29:36 182
原创 实验1-1 Hello World! (5分)
实验1-1 Hello World! (5分) 本题要求编写程序,输出一个短句“Hello World!”。 输入格式: 本题目没有输入。 输出格式: 在一行中输出短句“Hello World!”。 #include <stdio.h> int main() { printf("Hello World!"); } ...
2020-11-02 19:27:52 194
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人