gpt4 book ai didi

c# - 保存计算的操作数

转载 作者:太空宇宙 更新时间:2023-11-04 14:00:00 25 4
gpt4 key购买 nike

所以,这是主要思想,我正在尝试制作一个计算器。

private void _1_button_Click(object sender, RoutedEventArgs e)
{
resultBoxText += "1";
resultBox.Text = resultBoxText;
}
private void _2_button_Click(object sender, RoutedEventArgs e)
{
resultBoxText += "2";
resultBox.Text = resultBoxText;
}
private void _3_button_Click(object sender, RoutedEventArgs e)
{
resultBoxText += "3";
resultBox.Text = resultBoxText;
}
private void plus_button_Click(object sender, RoutedEventArgs e)
{
resultBoxText += "+";
resultBox.Text = resultBoxText;
}

private void minus_button_Click(object sender, RoutedEventArgs e)
{
resultBoxText += "-";
resultBox.Text = resultBoxText;
}

上面的代码是当用户输入数字或操作数时,文本框中的文本发生变化。现在,我如何进行实际计算?在一个单独的函数中(带参数)?一个变量足以满足所有操作数还是我应该创建一个数组?随着输入的进行,我如何将它们加在一起?例如:我按“2”,然后按“+”,然后按“3”,如何在结果中收集它们?我真的不知道如何开始:/

最佳答案

如果您只打算加减 1,2,3,4,那么一个变量就足够了。只需在您的事件处理程序中进行所有必要的计算即可。

关于c# - 保存计算的操作数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19717761/

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