gpt4 book ai didi

c# - 增量和减量的总量

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

namespace rojak2.cs
{
class Program
{
static void Main(string[] args)
{
ArithmeticOperators();
}

static void ArithmeticOperators()
{
double totalAmount = 100;
double result;

Console.WriteLine("totalAmount is {0}", totalAmount);
Console.WriteLine();

result = totalAmount + 100;
Console.WriteLine("totaAmount is {0}", result);

result = totalAmount - 50;
Console.WriteLine("totaAmount is {0}", result);

result = ++totalAmount;
Console.WriteLine("totaAmount is {0}", totalAmount);

result = --totalAmount;
Console.WriteLine("totaAmount is {0}", totalAmount);
}
}

}

我的问题是为什么最后输出的result是100而不是99?它应该从 100 而不是 101 减少。我不太明白。

最佳答案

因为预增量。变量值在其值被复制到结果之前递增。因此 result 将有 101 作为预递增和递减的结果 - 它首先减去一个然后复制值,因此你得到的结果为 100。

关于c# - 增量和减量的总量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9647122/

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