Math类的mndom()方法也可以用来生成随机字符
代码如下所示:
//random方法生成随机字符
public class RandomChar {
public static void main(String[] args) {
System.out.println("生成a到z之间的随机字符:"+(char)('a'+Math.random()*('z'-'a'+1)));
System.out.println("生成a到z之间的随机字符:"+(char)('a'+Math.random()*('z'-'a'+1)));
System.out.println("生成a到z之间的随机字符:"+(char)('a'+Math.random()*('z'-'a'+1)));
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>