如何用大写和小写字符填充矩阵

发布于 2025-01-11 06:57:22 字数 527 浏览 0 评论 0原文

您好,感谢您阅读本文。我编写了填充二维三角形数组的代码,但它只填充小写字母。如何让它也填充大写字母?

这是代码的一小部分:

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:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

<逆流佳人身旁 2025-01-18 06:57:22

您也可以随机化大写和小写。像这样的事情:

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++) {
                   case_int = random.nextInt(2);
                   case_char = (case_int == 0 ) ? 'a' : 'A';
                   matrice[i][j] = (char) (random.nextInt(26) + case_char);
     }
    }
  }

You can randomize upper and lower-cases as well. Something like this:

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++) {
                   case_int = random.nextInt(2);
                   case_char = (case_int == 0 ) ? 'a' : 'A';
                   matrice[i][j] = (char) (random.nextInt(26) + case_char);
     }
    }
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文