实例 66

题目

1 + 2 + 3 + ... + 100 的值。

分析

这里主要介绍两种方式:

  1. 循环遍历求和
  2. 公式求和:那些年,我们一起做过的 Java 课后练习题(66 - 70) - 图1%2F2#card=math&code=S%20%3D%20n%28n%2B1%29%2F2&id=ruZRL)

实现

  • 循环求和
  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : 村雨遥
  5. * @version : 1.0
  6. * @project : Java 编程实例
  7. * @package : PACKAGE_NAME
  8. * @className : Example66
  9. * @createTime : 2021/12/25 16:45
  10. * @email : 747731461@qq.com
  11. * @微信 : cunyu1024
  12. * @公众号 : 村雨遥
  13. * @网站 : https://cunyu1943.github.io
  14. * @description :
  15. */
  16. public class Example66 {
  17. public static void main(String[] args) {
  18. int sum = 0;
  19. int n = 100;
  20. for (int i = 11; i <= n; i++) {
  21. sum += i;
  22. }
  23. System.out.println("1 + 2 + ... + 100 = " + sum);
  24. }
  25. }
  • 公式求和
  1. /**
  2. * Created with IntelliJ IDEA.
  3. *
  4. * @author : 村雨遥
  5. * @version : 1.0
  6. * @project : Java 编程实例
  7. * @package : PACKAGE_NAME
  8. * @className : Example66
  9. * @createTime : 2021/12/25 16:45
  10. * @email : 747731461@qq.com
  11. * @微信 : cunyu1024
  12. * @公众号 : 村雨遥
  13. * @网站 : https://cunyu1943.github.io
  14. * @description :
  15. */
  16. public class Example66 {
  17. public static void main(String[] args) {
  18. int sum = 0;
  19. int n = 100;
  20. sum = n * (n + 1) / 2;
  21. System.out.println("1 + 2 + ... + 100 = " + sum);
  22. }
  23. }

结果

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

实例 67

题目

判断一个数 n 能否同时被 3 和 5 整除。

分析

由于 3 和 5 都是质数,要能同时被他们整除,则这个数一定能他们的最小公倍数。

实现

  1. import java.util.Scanner;
  2. /**
  3. * Created with IntelliJ IDEA.
  4. *
  5. * @author : 村雨遥
  6. * @version : 1.0
  7. * @project : Java 编程实例
  8. * @package : PACKAGE_NAME
  9. * @className : Example67
  10. * @createTime : 2021/12/25 16:51
  11. * @email : 747731461@qq.com
  12. * @微信 : cunyu1024
  13. * @公众号 : 村雨遥
  14. * @网站 : https://cunyu1943.github.io
  15. * @description :
  16. */
  17. public class Example67 {
  18. public static void main(String[] args) {
  19. int num = 15;
  20. int n = 0;
  21. Scanner scanner = new Scanner(System.in);
  22. System.out.println("请输入 n");
  23. n = scanner.nextInt();
  24. if (n % num == 0) {
  25. System.out.println(n + "能同时被 3 和 5 整除。");
  26. } else {
  27. System.out.println(n + "不能同时被 3 和 5 整除。");
  28. }
  29. }
  30. }

结果

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

实例 68

题目

有一个函数:

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

写程序,输入 x 的值,然后输出 y 对应的值。

分析

这里主要用条件判断语句,根据我们所输入的 x 调用不同的公式。

实现

  1. import java.util.Scanner;
  2. /**
  3. * Created with IntelliJ IDEA.
  4. *
  5. * @author : 村雨遥
  6. * @version : 1.0
  7. * @project : Java 编程实例
  8. * @package : PACKAGE_NAME
  9. * @className : Example68
  10. * @createTime : 2021/12/25 17:02
  11. * @email : 747731461@qq.com
  12. * @微信 : cunyu1024
  13. * @公众号 : 村雨遥
  14. * @网站 : https://cunyu1943.github.io
  15. * @description :
  16. */
  17. public class Example68 {
  18. public static void main(String[] args) {
  19. Scanner scanner = new Scanner(System.in);
  20. int x = 0;
  21. System.out.println("请输入 x");
  22. x = scanner.nextInt();
  23. if (x < 1) {
  24. System.out.println("y = " + x);
  25. } else if (x >= 1 && x < 10) {
  26. System.out.println("y = " + (2 * x - 1));
  27. } else {
  28. System.out.println("y = " + (x * 3 - 11));
  29. }
  30. }
  31. }

结果

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

实例 69

题目

给定一个不多于 5 位的正整数,要求:

  • 求出该数是几位数;
  • 分别输出每位数字;
  • 逆序输出各位数字,如原来为 123,应输出 321

分析

将该数转换为字符串,然后求其长度,然后正序输出字符串,再逆序输出字符串。

实现

  1. import java.util.Scanner;
  2. /**
  3. * Created with IntelliJ IDEA.
  4. *
  5. * @author : 村雨遥
  6. * @version : 1.0
  7. * @project : Java 编程实例
  8. * @package : PACKAGE_NAME
  9. * @className : Example69
  10. * @createTime : 2021/12/25 17:07
  11. * @email : 747731461@qq.com
  12. * @微信 : cunyu1024
  13. * @公众号 : 村雨遥
  14. * @网站 : https://cunyu1943.github.io
  15. * @description :
  16. */
  17. public class Example69 {
  18. public static void main(String[] args) {
  19. Scanner scanner = new Scanner(System.in);
  20. System.out.println("请输入一个不多于 5 位的正整数");
  21. int num = scanner.nextInt();
  22. String numStr = Integer.toString(num);
  23. System.out.println("该数为:" + numStr.length() + " 位数");
  24. for (int i = 0; i < numStr.length(); i++) {
  25. System.out.println(numStr.charAt(i));
  26. }
  27. for (int i = numStr.length() - 1; i >= 0; i--) {
  28. System.out.println(numStr.charAt(i));
  29. }
  30. }
  31. }

结果

那些年,我们一起做过的 Java 课后练习题(66 - 70) - 图6

实例 70

题目

找出一个二维数组中的鞍点,即该位置上的元素在该行最大,在该列上最大(也可能没有鞍点)。

分析

先找二位数组每一行的最大值,记录下该最大值的列数,再比较这个数在该列是否最大,若最大则存在。

实现

  1. import java.util.Scanner;
  2. /**
  3. * Created with IntelliJ IDEA.
  4. *
  5. * @author : 村雨遥
  6. * @version : 1.0
  7. * @project : Java 编程实例
  8. * @package : PACKAGE_NAME
  9. * @className : Example70
  10. * @createTime : 2021/12/25 17:16
  11. * @email : 747731461@qq.com
  12. * @微信 : cunyu1024
  13. * @公众号 : 村雨遥
  14. * @网站 : https://cunyu1943.github.io
  15. * @description :
  16. */
  17. public class Example70 {
  18. public static void main(String[] args) {
  19. int[][] matrix = new int[5][5];
  20. Scanner scanner = new Scanner(System.in);
  21. //初始化数组
  22. for (int i = 0; i < 5; i++) {
  23. for (int j = 0; j < 5; j++) {
  24. System.out.println("请输入 matrix[" + i + "][" + j + "]");
  25. matrix[i][j] = scanner.nextInt();
  26. }
  27. }
  28. int maxY = 0;
  29. int maxX = 0;
  30. for (int i = 0; i < 5; i++) {
  31. maxX = matrix[i][0];
  32. boolean flag = true;
  33. // 求第 i 行最大值 maxX
  34. for (int j = 1; j < 5; j++) {
  35. if (maxX < matrix[i][j]) {
  36. maxX = matrix[i][j];
  37. maxY = j;
  38. }
  39. }
  40. for (int j = 1; j < 5; j++) {
  41. if (maxX < matrix[j][maxY]) {
  42. {
  43. flag = false;
  44. break;
  45. }
  46. }
  47. }
  48. if (flag) {
  49. System.out.println("靶点位置:matxix[" + i + "][" + maxY + "]:" + maxX);
  50. }
  51. }
  52. }
  53. }

结果

那些年,我们一起做过的 Java 课后练习题(66 - 70) - 图7