2021年9月1日
摘要: 1 /* 2 * 从键盘读入学生成绩 找出最高分 并输出学生等级成绩 3 * 成绩>=最高分-10 等级为’A‘ 4 * 成绩>=最高分-20 等级为’B‘ 5 * 成绩>=最高分-30 等级为'C' 6 * 其余 等级为’D‘ 7 * 8 */ 9 10 11 public static void 阅读全文
posted @ 2021-09-01 13:02 Bytezero! 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 1 public static void main(String[] args) 2 { 3 int[] arr = new int[] {8,6,3,1,9,5,4,7}; 4 int[] index = new int[] {3,2,7,0,4,5,1,6,3,7,3}; 5 String te 阅读全文
posted @ 2021-09-01 11:58 Bytezero! 阅读(949) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-01 11:32 Bytezero! 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 1 public static void main(String[] args) 2 { 3 int[] arry = new int[4]; //int 默认值0 //浮点型 0.0 4 for(int i =0; i < arry.length;i++) 5 { 6 System.out.pri 阅读全文
posted @ 2021-09-01 11:05 Bytezero! 阅读(361) 评论(0) 推荐(0) 编辑