随笔分类 -  java编程题

摘要:1 public class Demo04{ 2 public static void main(String[] args){ 3 int[][] arr = new int[10][10]; 4 yanghui(arr); 5 print(arr); 6 7 } 8 public static 阅读全文
posted @ 2021-08-12 16:48 炽雪 阅读(32) 评论(0) 推荐(0)
摘要:1. 题目:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数 1 //题目:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数 2 public class Demo02{ 3 public static void main(String[] args) 阅读全文
posted @ 2021-08-07 14:31 炽雪 阅读(60) 评论(0) 推荐(0)