自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (1)
  • 收藏
  • 关注

原创 快速排序练习

package com.company.test3;public class MyQuiteSortDemo { public static void main(String[] args) { int[] arr={6,1,2,7,9,3,1,4,5,10,18}; quiteSOrt(arr,0,arr.length-1); for (int i = 0; i < arr.length; i++) { Syste.

2022-01-15 16:37:50 98

原创 java递归练习

package com.company.test3;public class MyFactoralDemo { public static void main(String[] args) { int result = getJc(5); System.out.println(result); } private static int getJc(int i) { //一定要有出口 if(i==1){ .

2022-01-15 15:44:40 56

原创 java冒泡排序法 练习

package com.company.test3;import org.w3c.dom.ls.LSOutput;public class MyBubbleSortDemo { public static void main(String[] args) { int[] arr = {5, 2, 4, 8, 6, 1, 3}; int temp; int a=1; bubble(arr, a); } p.

2022-01-15 15:09:06 116

原创 二分查找法练习

package com.company.test3;import org.w3c.dom.ls.LSOutput;public class MyBinarySearchDemo { public static void main(String[] args) { int [] arr = {1,2,3,4,5,6,7,8,9}; int number = 3; int index =binarySearchForIndex(arr,numb.

2022-01-14 19:43:03 90

原创 Integer数据类型转换

package com.company.test;public class test3 { public static void main(String[] args) { String s = "97 78 52 14 12"; //split字符串切割 String[] strArr = s.split(" "); int[] numberArr = new int[strArr.length]; //把s.

2022-01-12 21:42:27 197

原创 java匿名类练习

对匿名类单个方法 和多个方法的调用练习

2022-01-11 17:53:32 278

原创 学校管理系统

练手控制台学生管理系统

2022-01-08 10:47:37 340

学生 老师 管理系统,适合初学者练手

没有使用数据库,在控制台显示

2022-01-08

空空如也

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

TA关注的人

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