5.1 引言

  • 循环可以用于让一个程序反复地执行语句
  • Java中提供一种称为循环(loop)的功能亲啊大噶的构造,用来控制一个操作或操作序列重复执行的次数。使用循环语句时,只要简单地告诉计算机输出字符串100次,而无须重复打印输出语句100次,如下所示
    1. int count = 0;
    2. while(count <= 100){
    3. System.out.println("Welcome to Java!");
    4. count++;
    5. }
  • 变量count的初值为0。循环检测(count < 100)是否为true。若为true,则执行循环体以输出消息”Welcome to Java!”,然后给count加1.重复执行这个循环,直到(count < 100)变为false为止。当(count < 100)变为false(例如:count达到100),此时循环终止,然后执行循环语句之后的下一条语句。
  • 循环是用来控制语句块重复执行的一种构造。循环的概念是程序设计的基础。Java提供了三种类型的循环语句:while循环、do - while 循环和for循环。

5.2 while循环

  • while循环在条件为真的情况下,重复地执行语句
    1. while 循环的语法如下:
    2. while(循环继续条件){
    3. //循环体
    4. 语句(组)
    5. }
  • 循环继续条件应该总是放在圆括号内。只有当循环体只包含一条语句或不包含语句时,循环体的花括号才可以省略。
  • 要保证循环继续条件最终可以变为false,以便程序能够结束。一个常见的程序设计错误是无限循环(也就是说,循环会永远执行下去)。如果你的程序运行了过长的时间而不结束,可能其中就有无限循环。如果你是从命令窗口运行程序的,按ctrl + c键来结束运行。
  • 程序员经常会犯的错误就是使循环多执行一次或少执行一次。这种情况通常称为差一错误(off - by - one error)。例如:下面的循环会将Welcome to Java显示101次,而不是100次。这个错误出在条件部分,条件应该是count < 100而不是count <= 100。
    1. int count = 0;
    2. while(count <= 100){
    3. System.out.println("Welcome to Java!");
    4. count++;
    5. }
  • 回顾程序清单3-1给出了一个程序,提示用户为两个个位数相加的问题给出答案。现在你可以使用循环重写程序,让用户重复输入新的答案,直到答案正确为止,如下面的程序清单5-1所示。

程序清单 5-1 RepeatAdditionQuiz.java

  1. import java.util.Scanner;
  2. public class RepeatAdditionQuiz {
  3. public static void main(String[] args) {
  4. int number1 = (int) (Math.random() * 10);
  5. int number2 = (int) (Math.random() * 10);
  6. //Create a Scanner
  7. Scanner input = new Scanner(System.in);
  8. System.out.print(
  9. "What is " + number1 + " + " + number2 + "?");
  10. int answer = input.nextInt();
  11. while (number1 + number2 != answer) {
  12. System.out.print("Wrong answer .Try again.What is " +
  13. number1 + " + " + number2 + " ? ");
  14. answer = input.nextInt();
  15. }
  16. System.out.println("You got it!");
  17. }
  18. }

5.3 示例学习:猜数字

  • 本示例产生一个随机数,然后让用户反复猜测该数字直到答对。
  • 要 解决的我呢提是猜测计算机”脑子”里想的是什么数。编写一个程序,随机产生一个0到100之间且包含0和100的整数。程序提示用户连续输入数字,直到它和计算机随机产生的数字相匹配为止。对用户每次输入的数组,程序都提示用户输入值是偏大还是偏小,这样用户可以明智地进行下一轮的猜测。
  • 该如何编写这个程序呢?要立即开始编码吗?不!编码前的思考是非常重要的。思考一下,不编写程序你会如何解决这个问题。首先需要产生一个0到100之间且包含0和100的随机数,然后提示用户输入一个猜测数,最后将这个猜测数和随机数进行比较。
  • 一次增加一个步骤地渐近编码(code incrementally)是一个很好的习惯。对涉及编写循环的程序而言,如果不知道如何立即编写循环,可以编写循环只执行一次的代码,然后规划如何在循环中重复执行这些代码。为了编写程序,可以打一个初稿,如程序清单5-2所示。

程序清单 5-2 GuessNumberOneTime.java

  1. import java.util.Scanner;
  2. public class GuessNumberOneTime {
  3. public static void main(String[] args) {
  4. //Generate a random number to be guessed
  5. int number = (int) (Math.random() * 101);
  6. Scanner input = new Scanner(System.in);
  7. System.out.println("Guess a magic number between 0 and 100");
  8. //Prompt the user to guess the number
  9. System.out.print("\nEnter your guess");
  10. int guess = input.nextInt();
  11. if(guess == number) {
  12. System.out.println("Yes, the number is " + number);
  13. } else if (guess > number) {
  14. System.out.println("Your guess is too high");
  15. } else {
  16. System.out.println("Your guess is too low");
  17. }
  18. }
  19. }

程序清单 5-3 GuessNumber.java

  1. import java.util.Scanner;
  2. public class GuessNumber {
  3. public static void main(String[] args) {
  4. //Generate a random number to be guessed
  5. int number = (int) (Math.random() * 101);
  6. Scanner input = new Scanner(System.in);
  7. System.out.println("Guess a magic number between 0 and 100");
  8. int guess = -1;
  9. while (guess != number) {
  10. //Prompt the user to guess the numnber
  11. System.out.print("\nEnter your guess: ");
  12. guess = input.nextInt();
  13. if (guess == number)
  14. System.out.println("Yes,the number is " + number);
  15. else if (guess > number)
  16. System.out.println("Your guess is too high");
  17. else
  18. System.out.println("Your guess is too low");
  19. }//End of loop
  20. }
  21. }

5.4 循环设计策略

  • 设计循环的关键是确定需要重复执行的代码,以及编写结束循环的条件代码

程序清单 5-4 SubtractionQuizLoop.java

  1. import java.util.Scanner;
  2. public class SubtractionQuizLoop {
  3. public static void main(String[] args) {
  4. //Number of questions
  5. final int NUMBER_OF_QUESTIONS = 5;
  6. //Count the number of current answers
  7. int correctCount = 0;
  8. //Count the number of questions
  9. int count = 0;
  10. long startTime = System.currentTimeMillis();
  11. //output string is initially empty
  12. String output = " ";
  13. Scanner input = new Scanner(System.in);
  14. while (count <NUMBER_OF_QUESTIONS){
  15. // 1.Generate two random single-digit integers
  16. int number1 = (int) (Math.random() * 10);
  17. int number2 = (int) (Math.random() * 10);
  18. //2.If number1 < number2 ,swap number1 with number2
  19. if (number1 < number2){
  20. int temp = number1;
  21. number1 = number2;
  22. number2 = temp;
  23. }
  24. //3.Prompt the student to answer "What is number1 - number2?"
  25. System.out.print(
  26. "What is " + number1 + " - " + number2 + " ? ");
  27. int answer = input.nextInt();
  28. //4.Grade the answer and display the result
  29. if(number1 -number2 == answer){
  30. System.out.println("You are correct!");
  31. correctCount++; //Increase the correct answer count
  32. }
  33. else {
  34. System.out.println("Your answer is wrong.\n" + number1
  35. + " - " + number2 + " should be " + (number1 - number2));
  36. }
  37. //Increase the question count
  38. count++;
  39. output += "\n" + number1 + " - " + number2 + " = " + answer+
  40. ((number1 - number2 == answer) ? " correct ": " wrong ");
  41. }
  42. long endTime = System.currentTimeMillis();
  43. long testTime = endTime - startTime;
  44. System.out.println("Correct count is " + correctCount +
  45. "\nTest time is " + testTime / 1000 + " seconds\n" + output);
  46. }
  47. }

5.5 使用用户确认或者标记值控制循环

  • 使用标记值来结束输入是一种通常的做法
  • 另一种控制循环的常用技术是在读取和处理一组值时指定一个特殊值。这个特殊的输入值也称为标记值(sentinel value),用以表明循环的结束。如果一个循环使用标记值来控制它的执行,它就称为标记位控制的循环(sentinel - controlled - loop)

程序清单 5-5 SentimelValue.java

  1. import java.util.Scanner;
  2. public class SentimelValue {
  3. /** Main method*/
  4. public static void main(String[] args) {
  5. //Create a Scanner
  6. Scanner input = new Scanner(System.in);
  7. //Read an initial data
  8. System.out.println(
  9. "Enter an integer (the input ends if it is 0) : ");
  10. int data = input.nextInt();
  11. //Keep reading data until the input is 0
  12. int sum = 0;
  13. while (data != 0){
  14. sum += data;
  15. //Read the next data
  16. System.out.println(
  17. "Enter an integar (the input ends if it is 0): ");
  18. data = input.nextInt();
  19. }
  20. System.out.println("The sum is " + sum);
  21. }
  22. }
  • 不要比较浮点值是否相等来进行循环控制。因为浮点值都是近似值,使用它们可能导致不精确的循环次数和不准确的结果。
  • 考虑下面计算1 + 0.9 + 0.8 + … + 0.1的代码:

    1. double item = 1;double sum = 0;
    2. while(item != 0) {//No guarantee item will be 0
    3. sum += item;
    4. item -= 0.1;
    5. }
    6. System.out.println(sum);


    变量item从1开始,每执行一次循环体就减去0.1。当item变为0时循环应该终止。但是,因为浮点数是近似的,所以不能确保item值正好为0。从表面上看,这个循环似乎没问题,但实际上它是一个无限循环。

  • 输入重定向(input redirection)

  • 输出重定向(output redirection)

5.6 do - while循环

  • do - while循环和while循环基本一样,不用的是它先执行循环体一次,然后判断循环继续条件。

程序清单 5-6 TestDoWhile.java

  1. import java.util.Scanner;
  2. public class TestDoWhile {
  3. public static void main(String[] args) {
  4. int data;
  5. int sum = 0;
  6. //Create a Scanner
  7. Scanner input = new Scanner(System.in);
  8. //Keep reading data until the input is 0
  9. do {
  10. //Read the next data
  11. System.out.println(
  12. "Enter an integer (the input ends if it is 0 ): ");
  13. data = input.nextInt();
  14. sum += data;
  15. }while (data != 0);
  16. System.out.println("The sum is " + sum);
  17. }
  18. }
  • 如果循环中的语句至少需要执行一次,建议使用do - while 循环。前面程序TestDoWhile中do - while循环的情形就是如此。如果使用while循环,那么这些语句必须在循环前和循环内部都出现。

5.7 for循环

  • for循环具有编写循环的简明语法
  • 一般情况下,for循环使用一个变量来控制循环体的执行次数,以及什么时候能循环终止。这个变量称为控制变量(control variable)。初始操作是指初始化控制变量,每次迭代后的操作通常会对控制变量做自增或自减,而循环继续条件检验控制变量是否达到终止值。例如,下面的for循环打印Welcome to Java!100次
  • 控制变量必须在循环控制结构体内或循环前说明。如果循环控制变量只在循环内使用而不在其他地方使用,那么在for循环的初始操作中声明它是一个良好的编程习惯。如果在循环控制结构体内声明变量,那么在循环外不能引用它。例如,不能在前面代码的for循环外引用变量i,因为它是在for循环内声明的。
  • for循环中的初始操作可以是0个或是多个以逗号隔开的变量声明语句或赋值表达式。
  • 如果省略for循环中的循环继续条件,则隐含地认为循环继续条件为true。因此,下面图a中给出的语句和图b中给出的语句一样,它们都是无限循环。但是,为了避免混淆,最好还是使用图c中的等价循环

5.8 采用哪种循环

  • 可以根据哪个更加方便来使用for循环、while循环或者do - while循环
  • while循环和for循环都称为前测循环(pretest loop),因为继续条件是在循环体执行之前检测的,do - while循环称为后测循环(posttest loop),因为循环条件是在循环体执行之后检测的。
  • 在for子句的末尾和循环体之间多写分号是一个常见的错误,如下面的图a中所示。图a中分号表明循环过早地结束了。循环体实际上为空,如图b所示。图a和图b是等价的,都不正确。类似地,图c中的循环也是错的,图c与图d等价,都是不正确的

5.9 嵌套循环

  • 一个循环可以嵌套在另外一个循环中
  • 嵌套循环是由一个外层循环和一个或多个内层循环组成的。每当重复执行一次外层循环时,将再次进入内部循环并重新开始执行

程序清单 5-7 MultiplicationTable.java

  1. public class MultiplicationTable {
  2. /**
  3. * Main method
  4. */
  5. public static void main(String[] args) {
  6. //Display the table heading
  7. System.out.println(" Multiplication Table");
  8. //Display the number title
  9. System.out.print(" ");//四个space
  10. for (int j = 1; j <= 9; j++) {
  11. System.out.print(" " + j);//三个space
  12. }
  13. System.out.println("\n----------------------");
  14. //Display table body
  15. for (int i = 1; i <= 9; i++) {
  16. System.out.print(i + " | ");
  17. for (int j = 1; j <= 9; j++) {
  18. //Display the product and align properly
  19. System.out.printf("%4d", i * j);
  20. }
  21. System.out.println();
  22. }
  23. }
  24. }
  • 需要注意的是,嵌套循环将运行较长时间。

5.10 最小化数值错误

  • 在循环继续条件中使用浮点数将导致数值错误

程序清单 5-8 TestSum.java

  1. public class TestSum {
  2. public static void main(String[] args) {
  3. //initialize sum
  4. float sum = 0;
  5. //Add 0.01,0.02,...,0.99,1 to sum
  6. for (float i = 0.01f; i <= 1.0f; i = i + 0.01f) {
  7. sum +=i;
  8. }
  9. //Display result
  10. System.out.println("The sum is " + sum);
  11. }
  12. }

5.11 示例学习

  • 循环对于编程来说非常关键。编写循环的能力在学习Java编程中是非常重要的。
  • 如果你可以使用循环编写程序,你便直到了如何编程!因此,本节提供三个运用循环来解决问题的补充示例

5.11.1 求最大公约数

程序清单 5-9 FutureTuition.java

  1. import java.util.Scanner;
  2. public class GreatestCommonDivisor {
  3. /**
  4. * Main method
  5. */
  6. public static void main(String[] args) {
  7. //Create a Scanner
  8. Scanner input = new Scanner(System.in);
  9. //Prompt the user to enter two integers
  10. System.out.print("Enter first integer: ");
  11. int n1 = input.nextInt();
  12. System.out.print("Enetr second integer: ");
  13. int n2 = input.nextInt();
  14. //Initial gcd is 1
  15. int gcd = 1;
  16. //Possible gcd
  17. int k = 2;
  18. while (k <= n1 && k <= n2) {
  19. if (n1 % k == 0 && n2 % k == 0) {
  20. //Update gcd
  21. gcd = k;
  22. }
  23. k++;
  24. }
  25. System.out.println("The greatest common divisor for " + n1 + " and "
  26. + n2 + " is " + gcd);
  27. }
  28. }

5.11.2 预测未来学费

程序清单 5-10 FutureTuition.java

  1. public class FutureTuition {
  2. public static void main(String[] args) {
  3. double tuition = 10000;
  4. //Year 0
  5. int year = 0;
  6. while (tuition < 20000) {
  7. tuition = tuition * 1.07;
  8. year++;
  9. }
  10. System.out.println("Tuition will be doubled in " + year + " years");
  11. System.out.printf("Tuition will be $%.2f in %1d years", tuition, year);
  12. }
  13. }

5.11.3 将十进制数转换为十六进制数

程序清单 5-11 Dec2Hex.java

  1. import java.util.Scanner;
  2. public class Dec2Hex {
  3. /**
  4. * Main method
  5. */
  6. public static void main(String[] args) {
  7. //Create a Scanner
  8. Scanner input = new Scanner(System.in);
  9. //Prompt the user to enter a decimal integer
  10. System.out.print("Enter a decimal number: ");
  11. int decimal = input.nextInt();
  12. //Convert decimal to hex
  13. String hex = "";
  14. while (decimal != 0) {
  15. int hexValue = decimal % 16;
  16. //Convert a decimal value to a hex digit
  17. char hexDigit = (0 <= hexValue && hexValue <= 9) ?
  18. (char) (hexValue + '0') : (char) (hexValue - 10 + 'A');
  19. hex = hexDigit + hex;
  20. decimal = decimal / 16;
  21. }
  22. System.out.println("The hex number is " + hex);
  23. }
  24. }

5.12 关键字break 和 continue

  • 关键字break 和 continue在循环中提供了额外的控制
  • 关键字break 和 continue都可以在循环语句中使用,为循环提供额外的控制。在某些情况下,使用break和continue可以简化程序设计。但是,过度使用或者不正确地使用它们会使得程序难以读懂也难以调试。

程序清单 5-12 TestBreak.java

  1. public class TestBreak {
  2. public static void main(String[] args) {
  3. int sum = 0;
  4. int number = 0;
  5. while (number < 20) {
  6. number++;
  7. sum += number;
  8. if (sum >= 100) {
  9. break;
  10. }
  11. }
  12. System.out.println("The number is " + number);
  13. System.out.println("The sum is " + sum);
  14. }
  15. }

程序清单 5-13 TestContinue.java

  1. public class TestContinue {
  2. public static void main(String[] args) {
  3. int sum = 0;
  4. int number = 0;
  5. while (number < 20) {
  6. number++;
  7. if (number == 10 || number == 11) {
  8. continue;
  9. }
  10. sum += number;
  11. }
  12. System.out.println("The sum is " + sum);
  13. }
  14. }
  • continue语句总是在一个循环内。在while和do - while循环中,continue语句之后会马上计算循环继续条件;而在for循环中,continue语句之后会立即先执行每次迭代后的动作,再计算循环继续条件
  • 很多程序设计语言都有goto语句。goto语句可以随意地将控制转移到程序中的任意一条语句上,然后执行它。这使程序很容易出错。Java中的break语句和continue语句是不同于goto语句的。它们只能运行在循环中或者switch语句中。break语句跳出整个循环,而continue语句跳出循环的当前迭代
  • 编程是一个富于创造性的工作。有许多不同的方式来编写代码。事实上,可以通过更加简单的代码来找到最小因子

5.13 示例学习: 判断回文

  • 本节给出了一个程序,用于判断一个字符串是否回文

程序清单 5-14 Palindrome.java

  1. import java.util.Scanner;
  2. public class Palindrome {
  3. /**
  4. * Main method
  5. */
  6. public static void main(String[] args) {
  7. //Create a Scanner
  8. Scanner input = new Scanner(System.in);
  9. //Prompt the user to enter a string
  10. System.out.print("Enter a string: ");
  11. String s = input.nextLine();
  12. //The index of the first character in the string
  13. int low = 0;
  14. //The index of the last character in the string
  15. int high = s.length() - 1;
  16. boolean isPalindrome = true;
  17. while (low < high) {
  18. if (s.charAt(low) != s.charAt(high)) {
  19. isPalindrome = false;
  20. break;
  21. }
  22. low++;
  23. high--;
  24. }
  25. if (isPalindrome) {
  26. System.out.println(s + " is a palindrome");
  27. } else {
  28. System.out.println(s + " is not a palindrome");
  29. }
  30. }
  31. }

5.14 示例学习: 显示素数

程序清单 5-15 PrimeNumber.java

  1. public class PrimeNumber {
  2. public static void main(String[] args) {
  3. //Number of primes to display
  4. final int NUMBER_OF_PRIMES = 50;
  5. //Display 10 per line
  6. final int NuMBER_OF_PRIMES_PER_LINE = 10;
  7. // Count the number of prime numbers
  8. int count = 0;
  9. // A number to be tested for primeness
  10. int number = 2;
  11. System.out.println("The first 50 prime number are \n");
  12. //Repeated find prime numbers
  13. while (count < NUMBER_OF_PRIMES) {
  14. //Assume the number is prime
  15. //Is the current number prime?
  16. boolean isPrime = true;
  17. //Test whether number is prime
  18. for (int divisor = 2; divisor <= number / 2; divisor++) {
  19. // If true ,number is not prime
  20. if (number % divisor == 0) {
  21. //Set isPrime to false
  22. isPrime = false;
  23. //Exit the for loop
  24. break;
  25. }
  26. }
  27. //Display the prime number and increase the count
  28. if (isPrime) {
  29. count++; //Increase the count
  30. }
  31. if (count % NuMBER_OF_PRIMES_PER_LINE == 0) {
  32. //Display the number and advance to the new line
  33. System.out.println(number);
  34. } else {
  35. System.out.print(number + " ");
  36. }
  37. }
  38. //Check if the next number is prime
  39. number++;
  40. }
  41. }