y12345op的博客1.数组基本使用 public class Array1 { public static void main(String[] args){ //创建一个数组 int[] arr=new int[10]; //获取数组长度 int length=arr.length; System.out.println(length);//10 //...
Jsckkxx的博客package com.duixiang.Demo20; public class Demo1 { public static void main(String[] args) { StringBuilder stb = new StringBuilder(); int count = 0; while (1>0){ int m = (int)(Math.random()*58+65); if(m...