C语言实例教程 Illustrated C

本教程主要为程序设计的初学者设计,通过C语言了解程序设计的基本概念。同时,也供学习过C语言,但是也针对程序设计的一些基本概念不甚了解的读者设计,可以用来加深对基本概念的理解。

本教程以任务驱动的方式设计,读者跟随教程完成一个一个的小的程序设计任务,从而掌握C语言的基本语法和程序设计的方法。本教程不就语法细节进行详述,有关语法细节可以参看The C Programming Language以及相关链接。

1. 任务

设计一个C语言程序,在屏幕上输出hello world。编译并且运行它。

实现该功能的程序如下所示:

   1 #include <stdio.h>
   2 int main() {
   3     printf("hello world\n");
   4 }

一个C语言程序,无论其大小如何,都是由函数和变量组成的。函数中包含一些语句,以指定所要执行的计算操作;变量则用于存储计算过程中使用的值。在本例中,函数的名字为main。通常情况下,函数的命名没有限制,但main是一个特殊的函数名——每个程序都从main函数的起点开始执行,这意味着每个程序都必须在某个位置包含一个main函数。

main函数通常会调用其他函数来帮助完成某些工作,被调用的函数可以是程序设计人员自己编写的,也可以来自于函数库。上述程序段中的第一行语句#include <stdio.h>用于告诉编译器在本程序中包含标准输入/输出库的信息。许多C语言源程序的开始处都包含这一行语句。

函数之间进行数据交换的一种方法是调用函数向被调用函数提供一个值(称为参数)列 表。函数名后面的一对圆括号将参数列表括起来。在本例中,main函数不需要任何参数,因 此用空参数表()表示。

函数中的语句用一对花括号{ }括起来。本例中的main函数仅包含下面一条语句:printf("hello, world\n");调用函数时,只需要使用函数名加上用圆括号括起来的参数表即可。上面这条语句将"hello, world\n"作为参数调用printf函数。printf是一个用于打印输出的库函数,在此处,它打印双引号中间的字符串。

用双引号括起来的字符序列称为字符串或字符串常量,如"hello, world\n"就是 个字符串。目前我们仅使用字符串作为printf以及其他函数的参数。

在C语言中,字符序列\n表示换行符,在打印中遇到它时,输出打印将换行,从下一行的左端行首开始。如果去掉字符串中的\n,即使输出打印完成后也不会换行。在printf函数的参数中,只能用\n表示换行符。如果用程序的换行代替\n,例如:

printf("hello, world
");

C编译器将会产生一条错误信息。

请注意,\n只代表一个字符。类似于\n的转义字符序列为表示无法输入的字符或不可见字符提供了一种通用的可扩充的机制。除此之外,C语言提供的转义字符序列还包括:\t表 示制表符;\b表示回退符;\"表示双引号;\\表示反斜杠符本身。

要使该程序可以运行,需要对程序进行编译。如何编译和运行取决于你所使用的系统。在Windows系统,参看C++集成开发环境。Windows下安装配置较复杂,推荐使用Linux环境。在Linux系统及其他一些UNIX系统下:

  1. 用任何文本编辑器(比如vi、emacs、gedit、kate等)编辑源代码,将上述程序写入一个文本文件,比如hello.c。
  2. 编译源代码:cc hello.c。如果提示找不到该程序,请先安装gcc编译器。

  3. 运行编译完成的程序./a.out,得到运行结果。

2. 任务

设计一个C语言程序,计算并输出边长是5的正方形的面积。

我们将上述程序改写成如下形式:

   1 #include <stdio.h>
   2 int main() {
   3     printf("The area of the square is 5 * 5.\n");
   4 }

运行后发现结果为:

The area of the square is 5 * 5.

该程序只是输出了"5 * 5"而不是输出5*5的值25。为了输出计算的结果,我们需要将程序改成如下形式:

   1 #include <stdio.h>
   2 int main() {
   3     printf("The area of the square is %d.", 5 * 5);
   4 }

其中,5是一个字面常量,*是一个运算符,表示乘法运算。由运算符将这些字面常量连接起来,构成一个表达式。这个表达式5*5的值就是25。printf函数的参数中,%d表示这个位置有一个值代替,具体的值,由后面的表达式计算而得。

3. 任务

设计一个程序,计算并输出半径是5的圆形的面积。

   1 #include <stdio.h>
   2 int main() {
   3     printf("The area of the circle is %f", 3.14159 * 5 * 5);
   4     return 0;
   5 }

目标:了解类型的概念

4. 任务

设计一个程序,计算并输出一个半径是5的圆形和一个边长是5的正方形的面积总和。

   1 #include <stdio.h>
   2 int main() {
   3     printf("The total area of the square and circle is %f.", 5*5 + 3.14159*5*5);
   4     return 0;
   5 }

   1 #include <stdio.h>
   2 int main() {
   3     int square_area;
   4     float circle_area;
   5     float total_area;
   6 
   7     square_area = 5 * 5;
   8     circle_area = 3.14159 * 5 * 5;
   9     total_area = square_area + circle_area;
  10     printf("The total area of the square and circle is %f", total_area);
  11     return 0;
  12 }

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5     float radius;
   6     float circle_area;
   7     float total_area;
   8 
   9     length = 5;
  10     square_area = length * length;
  11     radius = 5;
  12     circle_area = 3.14159 * radius * radius;
  13     total_area = square_area + circle_area;
  14     printf("The total area of the square and circle is %f", total_area);
  15     return 0;
  16 }

目标:掌握变量的基本概念

5. 任务

设计一个程序,输入正方形的边长,输出正方形的面积

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5     scanf("%d", &length);
   6     sqaure_area = length * length;
   7     printf("The area of the square is %d.", square_area);
   8     return 0;
   9 }

目标:掌握简单的输入输出,进一步理解变量的概念

6. 任务

输入5个正方形的边长,输出它们的面积。

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5 
   6     printf("Please enter the length of square:");
   7     scanf("%d", &length);
   8     sqaure_area = length * length;
   9     printf("The area of the square is %d.", square_area);
  10 
  11     printf("Please enter the length of square:");
  12     scanf("%d", &length);
  13     sqaure_area = length * length;
  14     printf("The area of the square is %d.", square_area);
  15 
  16     printf("Please enter the length of square:");
  17     scanf("%d", &length);
  18     sqaure_area = length * length;
  19     printf("The area of the square is %d.", square_area);
  20 
  21     printf("Please enter the length of square:");
  22     scanf("%d", &length);
  23     sqaure_area = length * length;
  24     printf("The area of the square is %d.", square_area);
  25 
  26     printf("Please enter the length of square:");
  27     scanf("%d", &length);
  28     sqaure_area = length * length;
  29     printf("The area of the square is %d.", square_area);
  30     return 0;
  31 }

   1 #include <stdio.h>
   2 
   3 void input_calculate_output() {
   4     printf("Please enter the length of square:");
   5     scanf("%d", &length);
   6     sqaure_area = length * length;
   7     printf("The area of the square is %d.", square_area);
   8 }
   9 int main() {
  10     input_calculate_output();
  11     input_calculate_output();
  12     input_calculate_output();
  13     input_calculate_output();
  14     input_calculate_output();
  15     return 0;
  16 }

目标:掌握函数的概念(无参数、无返回值)

7. 任务

输入5个正方形的边长,输出它们的面积总和。

   1 #include <stdio.h>
   2 
   3 int input_calculate() {
   4     printf("Please enter the length of square:");
   5     scanf("%d", &length);
   6     sqaure_area = length * length;
   7     return square_area;
   8 }
   9 int main() {
  10     int total_area = 0;
  11     total_area = total_area + input_calculate_output();
  12     total_area = total_area + input_calculate_output();
  13     total_area = total_area + input_calculate_output();
  14     total_area = total_area + input_calculate_output();
  15     total_area = total_area + input_calculate_output();
  16     printf("The total area of the squares is %d.", total_area);
  17     return 0;
  18 }

目标:了解有返回值的函数的概念

8. 任务

设计一个程序,已知圆的圆心在(3.0, 4.5),圆周上有一点(7.0, 7.5),计算并输出圆的面积。

   1 #include <stdio.h>
   2 #include <math.h>
   3 int main() {
   4     float radius;
   5 
   6     radius = sqrt( (7.0-3.0)*(7.0-3.0) + (7.5 - 4.5)*(7.5 - 4.5) );
   7     printf("The area of the circle is %f", 3.14159 * radius * radius);
   8 }

   1 #include <stdio.h>
   2 #include <math.h>
   3 float square(float x) {
   4     return x*x;
   5 }
   6 int main() {
   7     float radius;
   8 
   9     radius = sqrt( square(7.0-3.0) + square(7.5 - 4.5) );
  10     printf("The area of the circle is %f", 3.14159 * square(radius));
  11 }

目标:了解有参数的函数的概念

9. 任务

写一个程序,输出边长是1,2,3,4,5的正方形的面积。

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5     length = 1;
   6     square_area = length * length;
   7     printf("The area of the square is %d.", square_area);
   8     length = 2;
   9     square_area = length * length;
  10     printf("The area of the square is %d.", square_area);
  11     length = 3;
  12     square_area = length * length;
  13     printf("The area of the square is %d.", square_area);
  14     length = 4;
  15     square_area = length * length;
  16     printf("The area of the square is %d.", square_area);
  17     length = 5;
  18     square_area = length * length;
  19     printf("The area of the square is %d.", square_area);
  20     return 0;
  21 }

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5 
   6     length = 1;
   7     while(length <= 5) {
   8         square_area = length * length;
   9         printf("The area of the square is %d.", square_area);
  10         length = length + 1;
  11     }
  12 }

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5 
   6     for(length = 1; length <= 5; length = length + 1) {
   7         square_area = length * length;
   8         printf("The area of the square is %d.", square_area);
   9     }
  10 }

目标:掌握循环的概念

10. 任务

设计一个程序,输入正方形的边长,输出正方形的面积。如果输入的是一个负数,给出错误提示。

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5     scanf("%d", &length);
   6     if(length < 0) {
   7         printf("Error! Please input a positive integer!");
   8     } 
   9     else {
  10         square_area = length * length;
  11         printf("The area of the square is %d.", square_area);
  12     }
  13     return 0;
  14 }

目标:掌握分支的概念,缩进的编程风格

11. 任务

输入5个正方形,输出面积最大的正方形的面积。

   1 #include <stdio.h>
   2 int main() {
   3     int length;
   4     int square_area;
   5     int max_square_area;
   6 
   7     max_square_area = 0;
   8     for(length = 1; length <= 5; length = length + 1) {
   9         square_area = length * length;
  10         if(square_area > max_square_area) {
  11             max_square_area = square_area;
  12         }
  13     }
  14     printf("The max area of the squares is %d.", max_square_area);
  15 }

目标:进一步掌握循环和分支语句配合。

Illustrated_C (2008-02-23 15:34:57由localhost编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.