版本1和2间的区别
于2006-06-18 19:31:48修订的的版本1
大小: 2492
编辑: czk
备注:
于2006-07-28 18:33:06修订的的版本2
大小: 2438
编辑: czk
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 1: 行号 1:
[[Navigation(slides)]]
行号 39: 行号 37:

[[Navigation(siblings)]]

1.3 The for statement

There are plenty of different ways to write a program for a particular task. Let's try a variation on the temperature converter.

   1    #include <stdio.h>
   2 
   3    /* print Fahrenheit-Celsius table */
   4    main()
   5    {
   6        int fahr;
   7 
   8        for (fahr = 0; fahr <= 300; fahr = fahr + 20)
   9            printf("%3d %6.1f\n", fahr, (5.0/9.0)*(fahr-32));
  10    }

This produces the same answers, but it certainly looks different. One major change is the elimination of most of the variables; only fahr remains, and we have made it an int. The lower and upper limits and the step size appear only as constants in the for statement, itself a new construction, and the expression that computes the Celsius temperature now appears as the third argument of printf instead of a separate assignment statement.

This last change is an instance of a general rule - in any context where it is permissible to use the value of some type, you can use a more complicated expression of that type. Since the third argument of printf must be a floating-point value to match the %6.1f, any floating-point expression can occur here.

The for statement is a loop, a generalization of the while. If you compare it to the earlier while, its operation should be clear. Within the parentheses, there are three parts, separated by semicolons. The first part, the initialization

   fahr = 0

is done once, before the loop proper is entered. The second part is the test or condition that controls the loop:

   fahr <= 300

This condition is evaluated; if it is true, the body of the loop (here a single ptintf) is executed. Then the increment step

   fahr = fahr + 20

is executed, and the condition re-evaluated. The loop terminates if the condition has become false. As with the while, the body of the loop can be a single statement or a group of statements enclosed in braces. The initialization, condition and increment can be any expressions.

The choice between while and for is arbitrary, based on which seems clearer. The for is usually appropriate for loops in which the initialization and increment are single statements and logically related, since it is more compact than while and it keeps the loop control statements together in one place.

Exercise 1-5. Modify the temperature conversion program to print the table in reverse order, that is, from 300 degrees to 0.

TCPL/1.03_The_for_statement (2008-02-23 15:37:03由localhost编辑)

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