gpt4 book ai didi

java - 权力表

转载 作者:行者123 更新时间:2023-12-01 10:46:08 25 4
gpt4 key购买 nike

程序应使用嵌套 for 循环输出以下内容,如果可能,最好不要使用 pow() 方法。感谢任何帮助或建议。预期结果:

1 1 1 1 1 1

2 4 8 16 32 64

3 9 27 81 243 729

4 16 64 256 1024 4096

我的尝试:

class TableOfPowers
{
public static void main(String [] args)
{
int startValue = 1;
int y = 1;
for (int row =0; row < 4; row++)
{
for (int col = startValue; col < startValue+6; col ++)
{
y = y *startValue;
System.out.print(y + " " );
}
System.out.println();
startValue++;
}
}
}

最佳答案

让它工作,这是我的答案:

class TableOfPowers
{

public static void main(String [] args)
{
int startValue = 1;

for (int row =0; row < 4; row++)
{
int y =1;

for (int col = startValue; col < startValue+6; col ++)
{

y = y *startValue;
System.out.print(y + " " );
}

System.out.println();
startValue++;
}
}
}

关于java - 权力表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34167038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com