- 博客(4)
- 收藏
- 关注
原创 Java 判断是否是回文字符串
判断是否是回文字符串 方法一: /** * 判断是否是回文字符串 */ public class test4 { public static void main(String[] args) { String str = "12321"; int first = 0; int last = str.length() - 1; boolean flag = true; while (first < last) {
2021-10-24 22:45:46
897
原创 计算1到100之和
Java 计算1到100之和 递归法: /** * 递归计算1到100之和 */ public class test2 { public static void main(String[] args) { int count = sum(100); System.out.println(count); } public static int sum(int i) { if (i == 1) { return
2021-10-24 22:02:29
309
原创 数组升序排序
数组升序排序 冒泡法: /** * 冒泡法:数组升序排序 */ public class test1 { public static void main(String[] args) { int[] arr = {1, 8, 20, 10, 6, 8, 3, 5}; for (int i = 0; i <= arr.length - 1; i++) { for (int j = 0; j < arr.length - 1 - i
2021-10-24 21:46:53
382
原创 获取数组最大值和最小值
获取数组最大值和最小值 /** * 获取数组最大值和最小值 */ public class test { public static void main(String[] args) { int[] arr = {1, 8, 20, 10, 6, 8, 3, 5}; int max = arr[0]; int min = arr[0]; for (int i = 0; i <= arr.length - 1; i++) {
2021-10-24 21:15:22
253
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅