本帖最后由 maxwell247 于 2015-9-28 00:22 编辑
从网上找到一份编程练习题,我决定将里面的题目全都做一遍。
/*
题目:随机产生一个小写字母组成的字符串。
*/
/*
分析:Random类中没有随机生成字符的方法,只能通过nextInt控制范围,生成小写字符后,转化为字符串。
*/
import java.util.Random;
class SuiJiZiFuChuan {
public static final int ARRAY_SIZE=20; //字符数组长度
public static void main(String[] args) {
Random random=new Random();
char[] ch=new char[ARRAY_SIZE];
for (int i=0; i<ch.length; i++){
ch=(char)(random.nextInt(26)+'a'); //控制nextInt的范围,生成字符
}
String str=new String(ch);
System.out.println("随机生成的小写字母组成的字符串:"+str);
}
}
|
|