赞
踩
Random random=new Random();
Char[] letter=new char[5];
Int temp;
Int j=0;
System.out.print(''随机出5个不重复的字母);
While(j<5){
Temp=random.nextInt(123);
If((temp>=65 && temp<91) || temp>96){
Letter[j]=(char)temp;
System.out.println(letter[j]+" ");
J++;
}
}
System.out.print();
System.out.print("排序后");
Ayyays.sort(letter);
For(char c:letter){
System.out.print(c+" ")
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。