gpt4 book ai didi

c# - Basic C# 如何在 for 语句中使用 power?

转载 作者:太空宇宙 更新时间:2023-11-03 19:09:07 24 4
gpt4 key购买 nike

我正在尝试计算 1 到 100 的数字的平方和

我在做什么

   static void Main(string[] args)
{
double squareSum = 0.0;

for (int i = 1; i <= 100; i++)
{
double iSquared = Math.Pow(i, 2);
iSquared += squareSum;
}
Console.WriteLine(squareSum);
Console.ReadLine();

但我不明白为什么“iSquared += squareSum”不起作用,我使用代码中断并看到 squareSum 将保持为 0。

我也试过

 for (int i = 1; i <= 100; i++)
{
i*i+=squareSum;
}

但是不允许在同一个语句中使用两次“i”,有没有办法这样写?

为什么 squareSum 在第一条语句中仍然为 0?

提前致谢。

最佳答案

你需要交换它们:

squareSum += iSquared;

首先是将递增的变量。参见 += Operator (C# Reference)

关于c# - Basic C# 如何在 for 语句中使用 power?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22429734/

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