如何用大写和小写字符填充矩阵
您好,感谢您阅读本文。我编写了填充二维三角形数组的代码,但它只填充小写字母。如何让它也填充大写字母?
这是代码的一小部分:
public static void fillSpecialMatrice(char[][] matrice) {
Random random = new Random();
for(int i = 0; i < matrice.length; i++) {
for(int j = 0; j < matrice.length-i; j++) {
matrice[i][j] = (char) (random.nextInt(26) + 'a');
}
}
}
打印时三角矩阵的外观:
Hello and thank you for reading this. I have written code that fills a 2d triangular array, but it only fills with lower case letters. How do I get it to also fill with uppercase letters?
Here is a small part of the code:
public static void fillSpecialMatrice(char[][] matrice) {
Random random = new Random();
for(int i = 0; i < matrice.length; i++) {
for(int j = 0; j < matrice.length-i; j++) {
matrice[i][j] = (char) (random.nextInt(26) + 'a');
}
}
}
How the triangular matrix looks when printed:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也可以随机化大写和小写。像这样的事情:
You can randomize upper and lower-cases as well. Something like this: