gpt4 book ai didi

Java for 循环的幂

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

import static java.lang.Math.pow;

class projectThreeQ2{
public static void main (String args[]){

//Q2: Write a for statement to compute the sum 1 + 2^2 + 32 + 42 + 52 + ... + n2.

int n = 7;
int sum = 0;

for (int i = 0; i < n; i++){
sum = sum + (int)Math.pow(n,2);
}

System.out.println(sum);
}
}

问题是对 n^2 的和进行 for 循环。

所以就我而言;149162536.这等于 91。但是,当我运行代码时,我得到 343。为什么?

最佳答案

您在 for 循环中使用了错误的变量。您使用n 而不是i。正确的代码是:

for (int i = 1; i <= n; i++){
sum = sum + (int)Math.pow(i,2);
}

已编辑,因为循环应根据问题陈述从 1 运行到 n(含)。

关于Java for 循环的幂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39689124/

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