摘要: 1 public class a { 2 public static void main(String[] args) { 3 int arr[]=new int[] {9,8,3,5,2,90,23}; 4 for (int i=0;i<arr.length;i++) 5 { 6 System.o 阅读全文
posted @ 2021-12-09 14:36 芸小宇 阅读(27) 评论(0) 推荐(0)
摘要: 1 public class number { 2 3 public static void main(String[] args) { 4 char a[]=new char[26]; 5 int i; 6 for(i=0;i<26;i++) 7 { 8 a[i]=(char)('a'+i); 9 阅读全文
posted @ 2021-12-09 14:29 芸小宇 阅读(748) 评论(0) 推荐(0)