摘要: #主函数测试 public class criclqueue { int front; int rear; int maxsize; int[] arr; public criclqueue(int maxsize) { this.maxsize = maxsize; front = 0; rear 阅读全文
posted @ 2022-10-27 22:05 jinnice 阅读(19) 评论(0) 推荐(0)
摘要: public class array1 { public static void main(String[] args) { int array[][]=new int[11][11]; array[3][4]=10; array[6][8]=12; for(int [] row : array) 阅读全文
posted @ 2022-10-27 20:00 jinnice 阅读(20) 评论(0) 推荐(0)