Java random方法生成随机字符
提问人:刘旭39发布时间:2020-11-27
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)));
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>