集美大学 - 2840 - 实验1 - 编程题

-1

实验1主要是编程入门,了解C语言最基本的代码结构。

实验1-1 -输入输出格式化控制 Hello World!

本题要求编写程序,输出一个短句“Hello World!”。

输入格式:
本题目没有输入。

输出格式:
在一行中输出短句“Hello World!”。

#include

int main() {
    printf("Hello World!");
    return 0;
}

说明:C语言的printf()函数是将内容打印到终端上。

实验1-2-输入输出格式化控制 Welcome to You!

本题要求编写程序,输出一个短句“Welcome to You!”。

输入格式:
本题目没有输入。

输出格式:
在一行中输出短句“Welcome to You!”。

#include

int main() {
    printf("Welcome to You!");
    return 0;
}

实验1-3-输入输出格式化控制 Programming in C is fun!

本题要求编写程序,输出一个短句“Programming in C is fun!”。

输入格式:
本题目没有输入。

输出格式:
在一行中输出短句“Programming in C is fun!”。

#include

int main() {
    printf("Programming in C is fun!");
    return 0;
}

实验1-4-输入输出格式化控制 输出三角形

本题要求编写程序,输出指定的由“*”组成的三角图案。

输入格式:
本题无输入

输出格式:
按照下列格式输出由“*”组成的三角图案。

****
***
**
*
#include

int main() {
    printf("****\n***\n**\n*");
    return 0;
}

说明:\n是一个转义字符,表示内容换行。

实验1-5-输入输出格式化控制 输出菱形图案

本题要求编写程序,输出指定的由“A”组成的菱形图案。

输入格式:
本题无输入

输出格式:
按照下列格式输出由“A”组成的菱形图案。

  A
A   A
  A
#include

int main() {
    printf("  A\nA   A\n  A");
    return 0;
}

实验1-6 -输入输出格式化控制 输出带框文字

本题要求编写程序,输出指定的带框文字。

输入格式:
本题无输入

输出格式:
按照下列格式输出带框文字。

************
  Welcome
************
#include
int main() {
    printf("************\n  Welcome\n************");
    return 0;
}

实验1-7-输入输出格式化控制 What is a computer?

本题要求编写程序,输出一个短句“What is a computer?”。

输入格式:
本题目没有输入。

输出格式:
在一行中输出短句“What is a computer?”。

#include

int main() {
    printf("What is a computer?");
    return 0;
}

实验1-8-输入输出格式化控制 输出倒三角图案

本题要求编写程序,输出指定的由“*”组成的倒三角图案。

输入格式:
本题目没有输入。

输出格式:
按照下列格式输出由“*”组成的倒三角图案。

* * * *
 * * *
  * *
   *
#include

int main() {
    printf("* * * *\n * * *\n  * *\n   *");
    return 0;
}

你可能感兴趣的:(集美大学,-,2840,c语言,c++,开发语言)