实例 31

题目

将一个数组逆序输出。

分析

输入多个元素存入数组,然后逆序遍历数组输出即可;

实现

  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3. /**
  4. * Created with IntelliJ IDEA.
  5. *
  6. * @author : cunyu
  7. * @version : 1.0
  8. * @email : 747731461@qq.com
  9. * @website : https://cunyu1943.github.io
  10. * @date : 2021/6/4 13:51
  11. * @project : Java 编程实例
  12. * @package : PACKAGE_NAME
  13. * @className : Example31
  14. * @description :
  15. */
  16. public class Example31 {
  17. public static void main(String[] args) {
  18. Scanner scanner = new Scanner(System.in);
  19. int[] arr = new int[10];
  20. for (int i = 0; i < 10; i++) {
  21. System.out.println("输入第 " + (i + 1) + " 个元素!");
  22. arr[i] = scanner.nextInt();
  23. }
  24. System.out.println("输入的数组为:" + Arrays.toString(arr));
  25. System.out.println("逆序输出的数组");
  26. for (int i = arr.length - 1; i >= 0; i--) {
  27. System.out.print(arr[i] + "\t");
  28. }
  29. }
  30. }

结果

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

实例 32

题目

取一个整数 a 从右端开始的 4 ~ 7 位。

分析

输入一个整数,然后将其转换为字符串,然后遍历输出从右端开始的 4 ~ 7 位即可!

实现

  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/4 13:56
  10. * @project : Java 编程实例
  11. * @package : PACKAGE_NAME
  12. * @className : Example32
  13. * @description :
  14. */
  15. public class Example32 {
  16. public static void main(String[] args) {
  17. Scanner scanner = new Scanner(System.in);
  18. System.out.println("输入一个整数");
  19. int num = scanner.nextInt();
  20. String str = Integer.toString(num);
  21. System.out.println("整数从右端开始的 4 ~ 7 位:");
  22. for (int i = str.length() - 4; i >= str.length() - 7; i--) {
  23. System.out.print(str.charAt(i));
  24. }
  25. }
  26. }

结果

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

实例 33

题目

打印杨辉三角。

分析

仔细观察杨慧三角可以看到:

第 0 列和对角线上的数据全部为 1,其余位置上的数据为上一行正对数据与上一行正对前一个数据之和。

比如:a[4][2] = a[3][2] + a[3][1]

实现

  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/4 14:01
  10. * @project : Java 编程实例
  11. * @package : PACKAGE_NAME
  12. * @className : Example33
  13. * @description :
  14. */
  15. public class Example33 {
  16. public static void main(String[] args) {
  17. Scanner scanner = new Scanner(System.in);
  18. System.out.println("输入杨辉三角的行数");
  19. int row = scanner.nextInt();
  20. int[][] triangle = new int[row][];
  21. System.out.println("杨辉三角为:");
  22. for (int i = 0; i < triangle.length; i++) {
  23. triangle[i] = new int[i + 1];
  24. for (int j = 0; j < triangle[i].length; j++) {
  25. if (i == 0 || j == 0 || i == j) {
  26. triangle[i][j] = 1;
  27. } else {
  28. triangle[i][j] = triangle[i - 1][j] + triangle[i - 1][j - 1];
  29. }
  30. System.out.print(triangle[i][j] + " ");
  31. }
  32. System.out.println();
  33. }
  34. }
  35. }

结果

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

实例 34

题目

输入 3 个数 a、b、c,按大小顺序输出。

分析

输入 3 个数存入数组中,然后利用 Arrays.sort() 进行排序,最后按照从小到到输出即可。

实现

  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3. /**
  4. * Created with IntelliJ IDEA.
  5. *
  6. * @author : cunyu
  7. * @version : 1.0
  8. * @email : 747731461@qq.com
  9. * @website : https://cunyu1943.github.io
  10. * @date : 2021/6/4 14:06
  11. * @project : Java 编程实例
  12. * @package : PACKAGE_NAME
  13. * @className : Example34
  14. * @description :
  15. */
  16. public class Example34 {
  17. public static void main(String[] args) {
  18. Scanner scanner = new Scanner(System.in);
  19. System.out.println("输入三个整数");
  20. int[] arr = new int[3];
  21. for (int i = 0; i < 3; i++) {
  22. System.out.println("输入第 " + (i + 1) + " 个整数");
  23. arr[i] = scanner.nextInt();
  24. }
  25. Arrays.sort(arr);
  26. System.out.println("从小到大的输出顺序:");
  27. for (int i = 0; i < arr.length; i++) {
  28. if (i != arr.length - 1) {
  29. System.out.print(arr[i] + " < ");
  30. } else {
  31. System.out.print(arr[i]);
  32. }
  33. }
  34. }
  35. }

结果

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

实例 35

题目

输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。

分析

将数组复制到新的数组中,然后找到最大的元素和最小元素的索引,然后再到原数组中交换最大元素和第一个元素,最小元素和最后一个元素。

实现

  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3. /**
  4. * Created with IntelliJ IDEA.
  5. *
  6. * @author : cunyu
  7. * @version : 1.0
  8. * @email : 747731461@qq.com
  9. * @website : https://cunyu1943.github.io
  10. * @date : 2021/6/4 14:15
  11. * @project : Java 编程实例
  12. * @package : PACKAGE_NAME
  13. * @className : Example35
  14. * @description :
  15. */
  16. public class Example35 {
  17. public static int SIZE = 10;
  18. public static void main(String[] args) {
  19. Scanner scanner = new Scanner(System.in);
  20. int[] arr = new int[SIZE];
  21. for (int i = 0; i < SIZE; i++) {
  22. System.out.println("输入第 " + (i + 1) + " 个元素");
  23. arr[i] = scanner.nextInt();
  24. }
  25. int[] newArr = Arrays.copyOf(arr, arr.length);
  26. Arrays.sort(newArr);
  27. System.out.println("输入的数组:" + Arrays.toString(arr));
  28. // 找到最大元素和最小元素的索引位置
  29. int minIndex = 0;
  30. int maxIndex = 0;
  31. for (int i = 0; i < SIZE; i++) {
  32. if (arr[i] == newArr[0]) {
  33. minIndex = i;
  34. }
  35. if (arr[i] == newArr[SIZE - 1]) {
  36. maxIndex = i;
  37. }
  38. }
  39. // 交换最大元素和第一个元素
  40. int tmp1 = arr[0];
  41. arr[0] = arr[maxIndex];
  42. arr[maxIndex] = tmp1;
  43. // 交换最小元素和最后一个元素
  44. int tmp2 = arr[arr.length - 1];
  45. arr[arr.length - 1] = arr[minIndex];
  46. arr[minIndex] = tmp2;
  47. System.out.println("交换后的数组:" + Arrays.toString(arr));
  48. }
  49. }

结果

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