Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 C# Windows 窗体“税”类型计算器,想知道如何将输入到“textbox1”中的数字计算出该数字的 0.95 并将其显示在 textbox2 中并计算出另一个 0.05 并显示在文本框 3 中。我知道您可以使用标签,但文本框更适合项目。
如果我理解你的问题,这应该有效
double number = int.Parse(textbox1.Text); double _95Percentage = number * 95 / 100; double _05Percentage = number - _95Percentage; textbox2.Text = _95Percentage.ToString(); textbox3.Text = _05Percentage.ToString();
编辑:如果您希望您的计算 100% 准确,请用小数替换双精度。