实例 16

题目

输出 9 * 9 口诀。

分析

直接两层循环即可,要注意换行!

实现

  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : cunyu
  5. * @version : 1.0
  6. * @email : 747731461@qq.com
  7. * @website : https://cunyu1943.github.io
  8. * @date : 2021/6/3 13:03
  9. * @project : Java 编程实例
  10. * @package : PACKAGE_NAME
  11. * @className : Example16
  12. * @description :
  13. */
  14. public class Example16 {
  15. public static void main(String[] args) {
  16. for (int i = 1; i < 10; i++) {
  17. for (int j = 1; j <= i; j++) {
  18. System.out.print(j + " * " + i + " = " + (i * j) + "\t\t");
  19. }
  20. System.out.println();
  21. }
  22. }
  23. }

结果

那些年,我们一起做过的 Java 课后练习题(16 - 20) - 图1

实例 17

题目

猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一般,还不过瘾,又多吃了一个,第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下的一半零一个。到第 10 天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。

分析

反向思考,从第十天开始,到第一天,每天吃桃子的个数是 ( sum+1 ) 2 其中 sum 是后一天的 (sum+1) 2, 那么循环天数为九次,因为一到十,只经过了九天。

实现

  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : cunyu
  5. * @version : 1.0
  6. * @email : 747731461@qq.com
  7. * @website : https://cunyu1943.github.io
  8. * @date : 2021/6/3 13:07
  9. * @project : Java 编程实例
  10. * @package : PACKAGE_NAME
  11. * @className : Example17
  12. * @description :
  13. */
  14. public class Example17 {
  15. public static void main(String[] args) {
  16. int sum = 1;
  17. for (int i = 2; i <= 10; i++) {
  18. sum = (sum + 1) * 2;
  19. }
  20. System.out.println("第一天的桃子数:" + sum);
  21. }
  22. }

结果

那些年,我们一起做过的 Java 课后练习题(16 - 20) - 图2

实例 18

题目

两个乒乓球队进行比赛各出三人,甲队为 a、b、c 三人,乙队为 x、y、z 三人。已知 a 不和 x 比,c 不和 x、z 比,求比赛名单!

分析

分别将 a、b、c 和 x、y、z 进行配对,然后除开不符合题意的组合,最后得出的结果就是比赛名单。主要还是利用 for 循环和 if 条件判断来实现!

实现

  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : cunyu
  5. * @version : 1.0
  6. * @email : 747731461@qq.com
  7. * @website : https://cunyu1943.github.io
  8. * @date : 2021/6/3 13:08
  9. * @project : Java 编程实例
  10. * @package : PACKAGE_NAME
  11. * @className : Example18
  12. * @description :
  13. */
  14. public class Example18 {
  15. static char[] teamA = {'a', 'b', 'c'};
  16. static char[] teamB = {'x', 'y', 'z'};
  17. public static void main(String[] args) {
  18. int size = teamA.length;
  19. System.out.println("对战名单如下:");
  20. for (int i = 0; i < size; i++) {
  21. for (int j = 0; j < size; j++) {
  22. if (teamA[i] == 'a' && teamB[j] == 'x') {
  23. continue;
  24. } else if (teamA[i] == 'a' && teamB[j] == 'y') {
  25. continue;
  26. } else if ((teamA[i] == 'c' && teamB[j] == 'x') || (teamA[i] == 'c' && teamB[j] == 'z')) {
  27. continue;
  28. } else if (((teamA[i] == 'b' && teamB[j] == 'z') || (teamA[i] == 'b' && teamB[j] == 'y'))) {
  29. continue;
  30. } else {
  31. System.out.println(teamA[i] + " VS " + teamB[j]);
  32. }
  33. }
  34. }
  35. }
  36. }

结果

那些年,我们一起做过的 Java 课后练习题(16 - 20) - 图3

实例 19

题目

实现打印输出一个菱形。

  1. *
  2. ***
  3. *****
  4. *******
  5. *********
  6. *******
  7. *****
  8. ***
  9. *

分析

将菱形分为上下部分,然后穿插打印空格和 * 即可。

实现

  1. import java.util.Scanner;
  2. /**
  3. * Created with IntelliJ IDEA.
  4. *
  5. * @author : cunyu
  6. * @version : 1.0
  7. * @email : 747731461@qq.com
  8. * @website : https://cunyu1943.github.io
  9. * @date : 2021/6/3 13:30
  10. * @project : Java 编程实例
  11. * @package : PACKAGE_NAME
  12. * @className : Example19
  13. * @description :
  14. */
  15. public class Example19 {
  16. public static void main(String[] args) {
  17. Scanner scanner = new Scanner(System.in);
  18. System.out.println("输入需要打印的行数");
  19. int row = scanner.nextInt();
  20. if (row % 2 == 0) {
  21. // 计算菱形大小,将其分为上下部分
  22. row++;
  23. }
  24. for (int i = 0; i < row / 2 + 1; i++) {
  25. for (int j = row / 2 + 1; j > i + 1; j--) {
  26. // 输出左上角位置的空白
  27. System.out.print(" ");
  28. }
  29. for (int j = 0; j < 2 * i + 1; j++) {
  30. // 输出菱形上半部边缘
  31. System.out.print("*");
  32. }
  33. System.out.println(); // 换行
  34. }
  35. for (int i = row / 2 + 1; i < row; i++) {
  36. for (int j = 0; j < i - row / 2; j++) {
  37. // 输出菱形左下角空白
  38. System.out.print(" ");
  39. }
  40. for (int j = 0; j < 2 * row - 1 - 2 * i; j++) {
  41. // 输出菱形下半部边缘
  42. System.out.print("*");
  43. }
  44. // 换行
  45. System.out.println();
  46. }
  47. }
  48. }

结果

那些年,我们一起做过的 Java 课后练习题(16 - 20) - 图4

实例 20

题目

有一个分数序列:2/1、3/2、5/3、8/5、……,求出该数列的前 20 项之和。

分析

观察序列可知,从第二项开始,当前分数的分子就等于上一个分数的分子分母之和,分母就等于上一个分数的分子,根据此规律,对分数序列进行求和即可!

实现

  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : cunyu
  5. * @version : 1.0
  6. * @email : 747731461@qq.com
  7. * @website : https://cunyu1943.github.io
  8. * @date : 2021/6/3 13:30
  9. * @project : Java 编程实例
  10. * @package : PACKAGE_NAME
  11. * @className : Example20
  12. * @description :
  13. */
  14. public class Example20 {
  15. public static void main(String[] args) {
  16. double sum = 0.0d;
  17. // 分母
  18. int denominator = 1;
  19. // 分子
  20. int numerator = 2;
  21. for (int i = 1; i <= 20; i++) {
  22. sum = sum + (double) numerator / denominator;
  23. int tmp = denominator;
  24. denominator = numerator;
  25. numerator = tmp + denominator;
  26. System.out.println("前 " + i + " 项之和:" + sum);
  27. }
  28. }
  29. }

结果

那些年,我们一起做过的 Java 课后练习题(16 - 20) - 图5