自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 847

原创 计算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 264

原创 数组升序排序

数组升序排序 冒泡法: /** * 冒泡法:数组升序排序 */ 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 321

原创 获取数组最大值和最小值

获取数组最大值和最小值 /** * 获取数组最大值和最小值 */ 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 196

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除