gpt4 book ai didi

c# - 计算器正负号

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

我正在学习创建一个计算器程序。但我对如何使数字为正数或负数感到有点沮丧。就像我们在普通计算器中看到的一样。我不太确定如何通过在文本框上使用按钮使正数变为负数或使负号再次变为正数。

如果我按下按钮,数字会直接进入文本框。

private void No1_Click(object sender, EventArgs e)

    {
NumBox1.Text = NumBox1.Text + "1";
}

如何使 NumBox1.text 中的数字为负号或正号?请帮助!!!!

我用的是c#语言

最佳答案

假设您使用的是类 C 编程语言,试试这个:

int x = 10;  // positive
x = -1 * x // negative

int y = -10; // negative
y = -1 * y // positive

所以你看,你只需将数字乘以 -1 即可翻转符号。或者,您可以使用 - 运算符来达到相同的效果:

int x = 10;  // positive
x = -x // negative

int y = -10; // negative
y = -y // positive

关于c# - 计算器正负号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20558618/

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