使用 C# 语言编写的基础计算器程序


要在 C# 中创建计算器程序,你需要使用 Web 窗体。在此基础上创建 1 至 9 的按钮、加号、减号、乘号等。

我们来看一下加法、减法和乘法的代码。首先,我们要声明两个变量 −

static float x, y;

接下来,我们要了解如何为各个按钮单击设置计算代码:我们的结果文本框是 tbResult,因为我们也使用 Windows 窗体来显示计算器 −

protected void add_Click(object sender, EventArgs e) {
   x = Convert.ToInt32(tbResult.Text);
   tbResult.Text = "";
   y = '+';
   tbResult.Text += y;
}
protected void sub_Click(object sender, EventArgs e) {
   x = Convert.ToInt32(tbResult.Text);
   tbResult.Text = "";
   y = '-';
   tbResult.Text += y;
}
protected void mul_Click(object sender, EventArgs e) {
   x = Convert.ToInt32(tbResult.Text);
   tbResult.Text = "";
   y = '*';
   tbResult.Text += y;
}

以下是等号按钮代码 −

protected void eql_Click(object sender, EventArgs e) {
   z = Convert.ToInt32(tbResult.Text);
   tbResult.Text = "";
   if (y == '/') {
      p = x / z;
      tbResult.Text += p;
      x = d;
   } else if (y == '+') {
      p = x + z;
      tbResult.Text += p;
      a = d;
   } else if (y == '-') {
      p = x - z;
      tbResult.Text += p;
      x = p;
   } else {
      p = x * z;
      tbResult.Text += p;
      x = p;
   }
}

更新时间: 2020 年 6 月 19 日

870 次浏览

开启你的职业生涯

完成课程获得认证

开始
广告