用于查找计数的嵌套循环

发布于 2024-12-01 01:23:03 字数 492 浏览 0 评论 0原文

从来没有想过我在这里有嵌套循环的问题我是:我想要实现的是:给定两个数字 A 和 B 我需要找到 1 和 A*B 之间的所有计数数字,例如 A=4 B=3 我需要这个:

      1 2 3
      4 5 6
      7 8 9
      10 11 12

我写了最初的部分,但我不知道如何写下每一行中变化的值

      for(int i=1; i<=A; i++){
                 for(int j=1; j<=B; j++){
                      System.out.println("?");}}

A*B 给了我

    1 2 3
    2 4 6
    3 6 9
    4 8 12

我也尝试了一些其他组合,但没有运气,它可能看起来很简单,但它我第一次面对这个。提前致谢!

never thought i had issues with nested loops well here Iam: What i want to achieve is this: Given two number A and B i need to find all counting numbers between 1 and the A*B for example A=4 B=3 i need this:

      1 2 3
      4 5 6
      7 8 9
      10 11 12

I wrote the initial parts but i can't figure out how can i write down the value which changes in every row

      for(int i=1; i<=A; i++){
                 for(int j=1; j<=B; j++){
                      System.out.println("?");}}

Having A*B gives me

    1 2 3
    2 4 6
    3 6 9
    4 8 12

I tried some other combinations too but to no luck, It might look straight forward but its the first time i'm facing this. Thanks in advance!

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

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

发布评论

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

评论(6

Oo萌小芽oO 2024-12-08 01:23:03
for(int i=0; i<A; i++){
    for(int j=0; j<B; j++){
        System.out.print(B*i + (j + 1));
    }
    System.out.println("");
}
for(int i=0; i<A; i++){
    for(int j=0; j<B; j++){
        System.out.print(B*i + (j + 1));
    }
    System.out.println("");
}
汹涌人海 2024-12-08 01:23:03

您可以尝试(i-1)*B + j

另一种选择是仅使用 1 个 for 循环:

int limit = A * B;
for (int i = 1; i <= limit; i++) {
    System.out.print(i + " ");
    if (i % B == 0) {
        System.out.println();
    }
}

You can try (i-1)*B + j.

Another option is to just use 1 for loop:

int limit = A * B;
for (int i = 1; i <= limit; i++) {
    System.out.print(i + " ");
    if (i % B == 0) {
        System.out.println();
    }
}
要走就滚别墨迹 2024-12-08 01:23:03

我不知道为什么它必须是嵌套循环?然而,这个可能有用

for(int i=0; i < A; i++){
      for(int j=i*B; j<(i+1)*B; j++){
           System.out.print(j+1);
      }
      System.out.print("\n");
}

I don't know Why it has to be a nested loop? however, this one might work

for(int i=0; i < A; i++){
      for(int j=i*B; j<(i+1)*B; j++){
           System.out.print(j+1);
      }
      System.out.print("\n");
}
口干舌燥 2024-12-08 01:23:03
for(int i=1;i<=A*B;i++)
{  System.out.printf("%d%c",i,(i%B!=0?' ':'\n'));
}

for(i=1;i<A*B;i+=B)
{ for(j=i;j<i+B;j++)
  { System.out.printf("%d ",j);
  }
  System.out.println();
}
for(int i=1;i<=A*B;i++)
{  System.out.printf("%d%c",i,(i%B!=0?' ':'\n'));
}

for(i=1;i<A*B;i+=B)
{ for(j=i;j<i+B;j++)
  { System.out.printf("%d ",j);
  }
  System.out.println();
}
荭秂 2024-12-08 01:23:03
 for(int i=1; i<=A; i++){
                 for(int j=1; j<=B; j++){
                      System.out.print(B*(i - 1) + j);
                 }
                 System.out.println();
 }
 for(int i=1; i<=A; i++){
                 for(int j=1; j<=B; j++){
                      System.out.print(B*(i - 1) + j);
                 }
                 System.out.println();
 }
十年九夏 2024-12-08 01:23:03

解决方案非常简单,只需再使用一个变量并从 1 计数到 A*B 即可。

q = 0;
for(int i=0; i<A; i++){
    for(int j=0; j<B; j++){
        q++;
        System.out.print(q + " ");
    }
    System.out.println();
}

The solution is ridiculously simply, just use one more variable and count it from 1 to A*B.

q = 0;
for(int i=0; i<A; i++){
    for(int j=0; j<B; j++){
        q++;
        System.out.print(q + " ");
    }
    System.out.println();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文