gpt4 book ai didi

c# - 如何在 c# 中使用字符串(文本框)和 Double 值进行乘法计算?

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

<分区>

所以我正在尝试创建一个程序,它是一个雇佣程序,我将 2 个值存储为双变量(第一个设置为值 £3.00,第二个设置为 £1.00,我有一个2 个文本框:

  1. 第一个文本框是用户输入他们想要的小时数的地方。
  2. 第二个文本框将显示 txtHours 乘以 costPerHour 的结果,并在用户需要时添加 1.00 英镑用于保险。

我遇到的问题是出现以下错误:

Error CS0019 Operator '*' cannot be applied to operands of type 'string' and 'double'

我已经尝试了所有方法,包括解析技术,但仍然无法正常工作有人可以看看下面的代码并告诉我哪里出错了吗?

private void button2_Click_1(object sender, EventArgs e)
{
double costPerHour = 3.00;
double costOfInsurance = 1.00;

if (chbInsurance.Checked == true)
txtCost.Text = txtHours.Text * costPerHour + costOfInsurance;
else
txtCost.Text = txtHours.Text * costPerHour;
}

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