文章目录

  • 1.while循环练习:回文数
  • 2.for循环练习:求平方根
  • 3.for循环练习:求质数
  • 4.while循环练习:数字炸弹小游戏
  • 5.数组练习:遍历数组求和
  • 6.数组练习:交换数组中的数组
  • 7.数组练习:打乱数组中的数据
  • 8.方法练习:复制数组
  • 9.综合练习:卖飞机票
  • 10.综合练习:生成验证码
  • 11.综合练习:数字加密及解密
  • 12.综合练习:抢红包
  • 13.字符串练习:用户登录
  • 14.字符串练习:手机号屏蔽
  • 15.字符串练习:敏感词替换
  • 16.字符串练习:金额转换
  • 17.字符串综合练习:转换罗马数字
  • 18.面向对象综合练习:对象数组
    • javabean类:Students.java
    • studentInfo.java
  • 19.集合练习:添加手机对象并返回要求的数据
    • javabean类:Phone.java
    • phoneInfo.java
  • 20.集合练习:添加用户对象并判断是否存在
    • User.java
    • userInfo.java

1.while循环练习:回文数

    需求:给你一个整数x,如果x是一个回文整数,打印true,否则返回false解释:回文数是指正序和倒序读都是一样的整数
 public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("请输入一个整数:");int number = sc.nextInt();int temp = number;//定义一个临时变量用来记录number的值int num = 0;while (number != 0) {int ge = number % 10;number = number / 10;num = num * 10 + ge;}System.out.println(num == temp);}

2.for循环练习:求平方根

    需求:键盘录入一个大于等于2的整数x,计算并返回x的平方根。结果只保留整数部分,小数部分将被舍去。
public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("请输入一个整数:");int number = sc.nextInt();for (int i = 1; i <= number; i++) {if (i * i == number) {System.out.println(i + "就是" + number + "的平方根");break;//一旦找到,循环就可以停止,后面的数字不用再找,提高代码的运行效率} else if (i * i > number) {System.out.println((i - 1) + "就是" + number + "平方根的整数部分");break;}}}

3.for循环练习:求质数

    需求:键盘录入一个正整数x,判断该整数是否为一个质数。质数:只能被1和本身整除,否则为合数。
 public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("请输入一个整数:");int number = sc.nextInt();boolean flag = true;//表示最初就认为number是一个质数for (int i = 2; i < number; i++) {if (number % i == 0) {flag = false;break;}}if (flag) {System.out.println(number + "是一个质数");} else {System.out.println(number + "不是一个质数");}}

4.while循环练习:数字炸弹小游戏

    需求:程序自动生成一个1-100之间的随机数,使用程序实现猜出这个数字是多少?
public static void main(String[] args) {Random r = new Random();int number = r.nextInt(100) + 1;//表示生成一个1-100的随机数while (true) {Scanner sc = new Scanner(System.in);System.out.println("请输入你猜测的数字:");int guessnumber = sc.nextInt();if (guessnumber == number) {System.out.println("猜对啦!");break;} else if (guessnumber > number) {System.out.println("猜大了!");} else {System.out.println("猜小了!");}}}

5.数组练习:遍历数组求和

    需求:生成10个1~100之间的随机数存入数组1.求出所有数据的和2.求出所有数据的平均值3.统计有多少个数据比平均值小
//一个循环尽量只做一个操作
public static void main(String[] args) {int[] arr = new int[10];Random r = new Random();int sum = 0;for (int i = 0; i < arr.length; i++) {arr[i] = r.nextInt(100) + 1;}for (int i = 0; i < arr.length; i++) {sum += arr[i];}System.out.println("数组中的数据和为:"+sum);int average = sum / arr.length;System.out.println("数组中的平均数为:"+average);int count=0;for (int i = 0; i < arr.length; i++) {if (arr[i]<average){count++;}}System.out.println("数组中的小于平均数的个数为:"+count);}

6.数组练习:交换数组中的数组

    需求:定义一个数组,存入1,2,3,4,5。按照要求交换索引对应的元素交换前:1,2,3,4,5交换后:5,4,3,2,1
public static void main(String[] args) {int[] arr = new int[]{1, 2, 3, 4, 5};for (int i = 0, j = arr.length - 1; i < j; i++, j--) {int temp = arr[i];arr[i] = arr[j];arr[j] = temp;}for (int i = 0; i < arr.length; i++) {System.out.print(arr[i]);}}

7.数组练习:打乱数组中的数据

    需求:定义一个数组,存入1~5.要求打乱数组中所有数据的顺序
public static void main(String[] args) {int[] arr = new int[]{1, 2, 3, 4, 5};Random r=new Random();for (int i = 0; i < arr.length; i++) {int index= r.nextInt(arr.length);int temp=arr[i];arr[i]=arr[index];arr[index]=temp;}for (int i = 0; i < arr.length; i++) {System.out.print(arr[i]);}}

8.方法练习:复制数组

    需求:定义一个方法copyOfRange(int[] arr,int from,int to)功能:将数组arr中从索引from(包括from)开始。到索引to结束(不包含to)的元素复制到新数组中,将新数组返回。
public static void main(String[] args) {int[] arr = {101, 202, 303, 404, 505, 606, 707, 808, 909};//方法调用int[] newarr = copyOfRange(arr, 2, 6);for (int i = 0; i < newarr.length; i++) {System.out.println(newarr[i]);}}//方法定义
public static int[] copyOfRange(int[] arr, int from, int to) {int newarr[] = new int[to - from];for (int i = from, j = 0; i < to; i++, j++) {newarr[j] = arr[i];}return newarr;}

9.综合练习:卖飞机票

    需求:机票价格按照淡季旺季、头等舱和经济舱收费、输入机票原价、月份和头等舱或经济舱。按照如下规则计算机票价格:旺季(5-10月)头等舱9折,经济舱8.5折,淡季(11月到来年4月)头等舱7折,经济舱6.5折。
public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("请输入机票原价:");int price = sc.nextInt();System.out.println("请输入当前月份:");int month = sc.nextInt();System.out.println("请输入购买的舱位(0:头等舱 1:经济舱):");int seat = sc.nextInt();switch (month) {case 5, 6, 7, 8, 9, 10:System.out.println("您的飞机票原价为" + price + "元,打完折后需要" + getPrice(price, seat, 0.9, 0.85) + "元");break;case 11, 12, 1, 2, 3, 4:System.out.println("您的飞机票原价为" + price + "元,打完折后需要" + getPrice(price, seat, 0.7, 0.65) + "元");break;default:System.out.println("输入的月份有误!");break;}}public static double getPrice(int price, int seat, double v0, double v1) {double newPrice = 0;if (seat == 0) {newPrice = price * v0;} else if (seat == 1) {newPrice = price * v1;} else {System.out.println("没有这个舱位!");}return newPrice;}

10.综合练习:生成验证码

    需求:定义发方法实现随机产生一个5位的验证码验证格式:长度为5,前四位是大写字母或者小写字母,最后一位是数字。
public static void main(String[] args) {char[] chs = new char[52];for (int i = 0; i < chs.length; i++) {if (i <= 25) {chs[i] = (char) (97 + i);} else {chs[i] = (char) (65 + i - 26);}}String result = "";//生成随机的字母Random r = new Random();for (int i = 0; i < 4; i++) {int randominedx = r.nextInt(chs.length);result += chs[randominedx];}//生成随机的数字int number = r.nextInt(10);result += number;//输出随机生成的五位验证码System.out.println(result);}

11.综合练习:数字加密及解密

    需求:某系统的数字密码(大于0),比如1983,采用加密方式进行传输。规则如下:先得到每位数,然后每位加5,再对10求余,最后将所有数字反转,得到一串新数,最后根据得到的新数解密出来原密码。
public static void main(String[] args) {//数字加密System.out.println("----数字加密----");Scanner sc = new Scanner(System.in);System.out.println("请输入一个数字:");int number = sc.nextInt();int temp = number;int count = 0;while (number != 0) {number /= 10;count++;}int[] arr = new int[count];int index = arr.length - 1;while (temp != 0) {int ge = temp % 10;temp /= 10;arr[index] = ge;index--;}//每位数+5for (int i = 0; i < arr.length; i++) {arr[i] += 5;}//对10取余for (int i = 0; i < arr.length; i++) {arr[i] %= 10;}//将所有数字反转for (int i = 0, j = arr.length - 1; i < j; i++, j--) {int temp1 = arr[i];arr[i] = arr[j];arr[j] = temp1;}int num = 0;for (int i = 0; i < arr.length; i++) {num = num * 10 + arr[i];}System.out.println(num);//数字解密System.out.println("----数字解密----");//将所有数字反转for (int i = 0, j = arr.length - 1; i < j; i++, j--) {int temp2 = arr[i];arr[i] = arr[j];arr[j] = temp2;}//对10取余for (int i = 0; i < arr.length; i++) {if (arr[i] >= 0 && arr[i] <= 4) {arr[i] += 10;}}for (int i = 0; i < arr.length; i++) {arr[i] -= 5;}int num2 = 0;for (int i = 0; i < arr.length; i++) {num2 = num2 * 10 + arr[i];}System.out.println(num2);}

12.综合练习:抢红包

    在参加抽奖活动时,奖品是现金红包,分别有{2,588,888,1000,10000}五个奖金。请使用代码模拟抽奖,打印出每个选项,奖项的出现顺序要随机且不重复。
public static void main(String[] args) {int[] arr = {2, 588, 888, 1000, 10000};Random r=new Random();for (int i = 0; i < arr.length; i++) {int randomIndex=r.nextInt(arr.length);int temp=arr[i];arr[i]=arr[randomIndex];arr[randomIndex]=temp;}for (int i = 0; i < arr.length; i++) {System.out.println(arr[i]);}}

13.字符串练习:用户登录

    需求:已知正确的用户名和密码,请用程序实现模拟用户登录。总共给三次机会,登录之后,给出相应提示。
public static void main(String[] args) {String rightUsername = "zhangsan";String rightPassword = "123456";for (int i = 2; i >= 0; i--) {Scanner sc = new Scanner(System.in);System.out.println("请输入用户名:");String username = sc.next();System.out.println("请输入密码:");String password = sc.next();if (username.equals(rightUsername) && password.equals(rightPassword)) {System.out.println("输入正确,登录成功!");break;} else {if (i == 0) {System.out.println("错误次数已达3次,账号被锁定!");} else {System.out.println("用户名或密码输入错误!(你还剩下" + i + "次机会)");}}}}

14.字符串练习:手机号屏蔽

    截取:String substring(int beginIndex,int endIndex)截取到末尾:String substring(int beginIndex)注意:包头不包尾,包左不包右;只有返回值才是截取的小串
 public static void main(String[] args) {String phoneNumber = "1234567891";//1.截取手机号前3位String start = phoneNumber.substring(0, 3);//2.截取手机号后四位String end = phoneNumber.substring(7);//3.拼接String result = start + "****" + end;System.out.println(result);}

15.字符串练习:敏感词替换

    替换:String replace(旧值,新值)注意点:只有返回值才是替换之后的结果
public static void main(String[] args) {String talk = "你玩的真好,以后不要再玩了,MD,SB";//定义一个敏感词库String[] arr = {"TMD", "MD", "SB"};for (int i = 0; i < arr.length; i++) {talk = talk.replace(arr[i], "***");}System.out.println(talk);}

16.字符串练习:金额转换

    针对发票的金额转换,转换的金额为7位,不足7位的金额前面需补0
public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("请录入一个金额:");int money = sc.nextInt();//1.判断输入的金额是否有效while (true) {if (money >= 0 && money <= 9999999) {break;} else {System.out.println("金额无效!");}}//2.将数字金额转换成大写方式String moneystr = "";//用来存储金额的大写while (true) {int ge = money % 10;String capitalNumber = getCapitalNumber(ge);moneystr = capitalNumber + moneystr;money /= 10;if (money == 0) {//如果数字上的每位都获取到了,那么money记录的就是0,此时循环结束break;}}//3.不足7位就补零int count = 7 - moneystr.length();for (int i = 0; i < count; i++) {moneystr = "零" + moneystr;}//4.插入单位String[] arr = {"佰", "拾", "万", "仟", "佰", "拾", "元"};String result = "";for (int i = 0; i < moneystr.length(); i++) {char c = moneystr.charAt(i);result += c + arr[i];}System.out.println(result);}//定义一个方法把数字变成大写的中文
public static String getCapitalNumber(int number) {String[] arr = {"零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"};return arr[number];}

17.字符串综合练习:转换罗马数字

    键盘录入一个字符串,要求:长度小于等于9,只能是数字将内容变成罗马数字下面是阿拉伯数字与罗马数字的对比关系:1:Ⅰ,2:Ⅱ,3:Ⅲ,4:Ⅳ,5:Ⅴ,6:Ⅵ,7:Ⅶ,8:Ⅷ,9:Ⅸ
public static void main(String[] args) {String str;while (true) {Scanner sc = new Scanner(System.in);System.out.println("请输入一个字符串:");str = sc.next();boolean flag = checkStr(str);if (flag) {break;} else {System.out.println("当前输入的字符格式不正确,请重新输入!");}}StringJoiner sj = new StringJoiner(",");for (int i = 0; i < str.length(); i++) {char c = str.charAt(i);int number = c - 48;sj.add(changeLuoMa(number));}System.out.println(sj);}//校验字符串是否满足要求
public static boolean checkStr(String str) {if (str.length() > 9) {return false;}for (int i = 0; i < str.length(); i++) {char c = str.charAt(i);if (c < '0' || c > '9') {return false;}}return true;}//将输入的阿拉伯数字转换成罗马数字public static String changeLuoMa(int number) {String[] arr = {"", "Ⅰ", "Ⅱ", "Ⅲ", "Ⅳ", "Ⅴ", "Ⅵ", "Ⅶ", "Ⅷ", "Ⅸ"};return arr[number];}

18.面向对象综合练习:对象数组

    定义一个长度为3的数组,数组存储1~3名学生对象作为初始数据,学生对象的学号,姓名各不相同。学生的属性:学号,姓名,年龄。要求1:再次添加一个学生对象,并在添加的时候进行学号的唯一性判断。要求2:添加完毕之后,遍历所有学生信息。要求3:通过id删除学生信息如果存在,则删除,如果不存在,则提示删除失败。要求4:删除完毕之后,遍历所有学生信息。要求5:查询数组id为“2”的学生,如果存在,则将他的年龄+1岁
javabean类:Students.java
public class Students {private int stuId;private String name;private int age;public Students() {}public Students(int stuId, String name, int age) {this.stuId = stuId;this.name = name;this.age = age;}public void setStuId(int stuId) {this.stuId = stuId;}public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public int getStuId() {return stuId;}public String getName() {return name;}public int getAge() {return age;}
}
studentInfo.java
public static void main(String[] args) {//1.创建一个数组用来存储学生对象Students[] stus = new Students[3];//2.创建学生对象并添加到数组当中Students stu1 = new Students(1, "张三", 18);Students stu2 = new Students(2, "李四", 16);Students stu3 = new Students(3, "王五", 17);//3.把学生信息添加到数组中stus[0] = stu1;stus[1] = stu2;stus[2] = stu3;//要求1:再次添加一个学生对象,并在添加的时候进行学号的唯一性判断。Students stu4 = new Students(4, "孙七", 20);contains(stus, stu4.getStuId());if (false) {System.out.println("当前ID已存在,请重新输入!");} else {int count = getCount(stus);if (count == stus.length) {//数组已经存满Students[] newStus = creatNewarr(stus);newStus[count] = stu4;//要求2:添加完毕之后,遍历所有学生信息。System.out.println("--所有学生信息--");printArr(newStus);} else {//数组没有存满stus[count] = stu4;//要求2:添加完毕之后,遍历所有学生信息。System.out.println("--所有学生信息--");printArr(stus);}}//要求3:通过id删除学生信息/*int index = getIndex(stus, 1);if (index >= 0) {//如果存在,则删除stus[index] = null;System.out.println("--删除后学生信息--");printArr(stus);} else {//如果不存在,则提示删除失败System.out.println("当前ID不存在,删除失败!");}*///要求5:查询数组id为“2”的学生,如果存在,则将他的年龄+1岁int index = getIndex(stus, 2);if (index >= 0) {//存在Students stu = stus[index];int neaAge = stu.getAge() + 1;stu.setAge(neaAge);System.out.println("--修改后学生信息--");printArr(stus);} else {//不存在System.out.println("当前ID不存在,修改失败!");}}//找到id在数组中的索引public static int getIndex(Students[] stus, int id) {for (int i = 0; i < stus.length; i++) {Students stu = stus[i];if (stu != null) {int sid = stu.getStuId();if (sid == id) {return i;}}}return -1;}//遍历所有学生信息public static void printArr(Students[] stus) {for (int i = 0; i < stus.length; i++) {Students s = stus[i];if (s != null) {System.out.println(s.getStuId() + "," + s.getName() + "," + s.getAge());}}}//当数组长度不够时,创建新数组,并把旧数组的数据存入新数组中public static Students[] creatNewarr(Students[] stus) {Students[] newStus = new Students[stus.length + 1];for (int i = 0; i < stus.length; i++) {newStus[i] = stus[i];//把老数组的元素添加到新数组中}return newStus;}//判断数组里面的空间是否已经存满数据public static int getCount(Students[] stus) {int count = 0;for (int i = 0; i < stus.length; i++) {if (stus[i] != null) {count++;}}return count;}//判断学号是否存在public static boolean contains(Students[] stus, int id) {for (int i = 0; i < stus.length; i++) {Students stu = stus[i];if (stu != null) {int sid = stu.getStuId();if (sid == id) {return true;}}}return false;}

19.集合练习:添加手机对象并返回要求的数据

    需求:定义javabean类(Phone)Phone属性:品牌,价格。main方法中定义一个集合,存入三个手机对象。分别为小米,1000。苹果,8000。锤子,2999.定义一个方法,将价格低于3000的手机信息返回。
javabean类:Phone.java
public class Phone {private String brand;private int price;public Phone() {}public Phone(String brand, int price) {this.brand = brand;this.price = price;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public int getPrice() {return price;}public void setPrice(int price) {this.price = price;}
}
phoneInfo.java
public static void main(String[] args) {ArrayList<Phone> list=new ArrayList<>();Phone p1=new Phone("小米",1000);Phone p2=new Phone("苹果",8000);Phone p3=new Phone("锤子",2999);list.add(p1);list.add(p2);list.add(p3);ArrayList<Phone> phoneInfoList=getPhoneInfo(list);for (int i = 0; i < phoneInfoList.size(); i++) {Phone phone= phoneInfoList.get(i);System.out.println(phone.getBrand()+","+phone.getPrice());}}public static ArrayList<Phone> getPhoneInfo(ArrayList<Phone> list){ArrayList<Phone> resultList=new ArrayList<>();//定义一个集合:用于存储手机价格低于3000的手机对象for (int i = 0; i < list.size(); i++) {Phone p=list.get(i);int price=p.getPrice();if (price<3000){resultList.add(p);}}return resultList;}

20.集合练习:添加用户对象并判断是否存在

    需求:main方法中定义一个集合,存入三个用户对象。用户属性为:id,username,password要求:定义一个方法,根据id查找对应的用户信息。如果存在,返回true如果不存在,返回false
User.java
public class User {private String id;private String username;private String password;public User() {}public User(String id, String username, String password) {this.id = id;this.username = username;this.password = password;}public String getId() {return id;}public void setId(String id) {this.id = id;}public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}public String getPassword() {return password;}public void setPassword(String password) {this.password = password;}
}
userInfo.java
public static void main(String[] args) {/*集合练习:添加用户对象并判断是否存在需求:main方法中定义一个集合,存入三个用户对象。用户属性为:id,username,password要求:定义一个方法,根据id查找对应的用户信息。如果存在,返回true如果不存在,返回false*/ArrayList<User> list = new ArrayList<>();User user1 = new User("user001", "张三", "123456");User user2 = new User("user002", "李四", "1234567");User user3 = new User("user003", "王五", "12345678");list.add(user1);list.add(user2);list.add(user3);boolean flag = checkId(list, "user005");System.out.println(flag);}public static boolean checkId(ArrayList<User> list, String id) {for (int i = 0; i < list.size(); i++) {if (list.get(i).getId().equals(id)) {return true;}}return false;}

Java 小练习(简单)—合集相关推荐

  1. 苹果使用过程中的小技巧(合集)

    苹果使用过程中的小技巧(合集) 苹果机通电开机后,底层会进行一系列自检,若能通过,就回听到那有名的"咚...", 然后由openfirm引导OS启动. 如果自检遇到问题,则会发出1 ...

  2. Java中级面试题合集

    Java中级面试题合集:1.弹出式选择菜单(Choice)和列表(List)有什么区别 Choice是以一种紧凑的形式展示的,需要下拉才能看到所有的选项.Choice中一次只能选中一个选项.List同 ...

  3. 【11款最全最新】Java游戏开发项目合集(上)_Java项目实战_Java练手项目

    黄金矿工.俄罗斯方块.飞机大战.超级玛丽.坦克大战.飞翔的小鸟等等经典小游戏相信很多人都玩过.大家有没有想过亲自制作出这些小游戏呢? 今天给大家分享11款经典小游戏的Java开发教程,快来戳下方视频学 ...

  4. JAVA小程序简单学籍系统参考代码,登陆小程序,Jtree //Jtree,JDBC,Jframe

    JAVA小程序简单学籍系统//Jtree,JDBC,Jframe 我们可以先在JAVA写一个类打开数据库获取连接 package sql; import java.sql.Connection; im ...

  5. 【11款最全最新】Java游戏开发项目合集_Java项目实战_Java练手项目

    黄金矿工.俄罗斯方块.飞机大战.超级玛丽.坦克大战.飞翔的小鸟.扫雷.王者荣耀.推箱子.贪吃蛇.大鱼吃小鱼这些经典小游戏相信很多人都玩过.那大家有没有想过亲自制作出这些小游戏呢? 下面就给大家分享这1 ...

  6. 如何复制java卡,使用java做一个简单的集卡程序

    使用java做一个简单的集卡程序 本次设想的是要集齐4张卡,每张卡的概率都是25%,如果每个用户集齐需要多少次才能集合完毕 public class Test { public static void ...

  7. 京东java笔试_2017阿里,百度,京东java面试+笔试大合集,2018的你会吗?

    2017阿里,百度,京东java面试+笔试大合集 1.阿里 面试(一二面合集) 1.介绍一下你自己. 2.介绍一下你认为做的最好的一个项目. 3.请用五分钟的时间把你做的项目的流程图画一下. 4.项目 ...

  8. java老师和学生(java老师学生类合集)

    Java学生老师类是一种用于模拟学生和老师之间的关系的类,通过它可以模拟学生和老师之间的信息交互.学生交作业等行为. 1.java老师和学生什么意思说法一,两种身份.java老师和学生是指在学习jav ...

  9. 勇闯掘金小游戏为一款多个小游戏的合集游戏,有五个关卡:找掘金、石头剪刀布、寻找藏宝图、打地鼠、抽奖。基于Vue

    游戏简介 勇闯掘金小游戏为一款多个小游戏的合集游戏,共有五个关卡,分别为:找掘金.石头剪刀布.寻找藏宝图.打地鼠.抽奖.每个环节20分,满分100分. 完整代码下载地址:勇闯掘金小游戏 快速体验 ht ...

  10. Java小程序——简单五子棋(人机对战)

    有关五子棋人人对战的代码,以及其他一些我想说的话请参考 Java小程序 -- 简单五子棋_如切如磋,如琢如磨-CSDN博客_java小程序 由于某些原因,这里我给出的AI算法算是比较简单的,所以导致了 ...

最新文章

  1. getopt( )和 getopt_long( )
  2. 转载:python3 安装pycrypto
  3. C#设计模式(7)-Singleton Pattern
  4. 深入探究JVM | klass-oop对象模型研究
  5. java socket android_Android:这是一份很详细的Socket使用攻略
  6. nn.ReLU() 和 nn.ReLU(inplace=True)中inplace的作用
  7. php display block,CSS display (block inline none )常见属性和用法教程
  8. 详解Android中AsyncTask的使用
  9. jQuery插件之ajaxFileUpload异步上传
  10. 推荐一个Oracle数据库学习的网站
  11. linux efi分区安装grub2,编译UEFI版本Grub2引导多系统文件efi
  12. MySql适配人大金仓数据库
  13. 大前端课程学习心得体会+学习笔记
  14. 专用计算机有,什么计算机是内嵌在其他设备中的专用计算机
  15. 关于Pytorch中detach
  16. pandas笔记(7)DataFrame数学运算
  17. 动态规划求解最少硬币是多少?
  18. 放大器指标:1db压缩点
  19. 诺基亚X6 打开开发者模式
  20. linux基础操作合集(正在写)

热门文章

  1. 风险管理_cissp
  2. 计算机桌面怎么全屏显示,如何让电脑显示器屏幕显示全屏
  3. 关于“显示器驱动程序已停止响应并且已成功恢复”的解决方案
  4. Android 手势小试牛刀
  5. 【量化课程】01_投资与量化投资
  6. 响应Response
  7. 欧几里得 扩展欧几里得
  8. 即将到来的量子计算时代,其商业应用价值在哪里?
  9. JAVA   变量
  10. java程序员如何进行物联网开发