中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現簡易的計算器

發布時間:2021-04-30 10:13:18 來源:億速云 閱讀:126 作者:小新 欄目:開發技術

這篇文章主要介紹了C#如何實現簡易的計算器,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

C#實現簡易的計算器的具體內容如下

1 題目描述

(1)Form1窗體設計界面如下:

C#如何實現簡易的計算器

(2)運算類型的下列列表中包括:加法、減法、乘法、除法、取模共5種操作;初始狀態下,選擇“加法”運算,當用戶更改運算類型時,下面式子中的加號“+”應自動更改為相應的運算符;
(3)當用戶在前兩個文本框中輸入時,最后得到結果的文本框始終是空白狀態,注意該文本框是只讀的,用戶不能更改其值;只有當用戶單擊確定按鈕時,結果文本框中才會顯示正確的計算結果;
(4)使用過程中,用戶修改運算類型時,三個文本框的內容自動清空;

2 源碼詳解

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Csharp7_1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton1.Checked == true)
            {
                label3.Text = "+";
                textBox1.Text = "";
                textBox2.Text = "";
                textBox3.Text = "";
            }
        }

        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton2.Checked == true)
            {
                label3.Text = "-";
                textBox1.Text = "";
                textBox2.Text = "";
                textBox3.Text = "";
            }
        }

        private void radioButton3_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton3.Checked == true)
            {
                label3.Text = "*";
                textBox1.Text = "";
                textBox2.Text = "";
                textBox3.Text = "";
            }
        }

        private void radioButton4_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton4.Checked == true)
            {
                label3.Text = "÷";
                textBox1.Text = "";
                textBox2.Text = "";
                textBox3.Text = "";
            }
        }

        private void radioButton5_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton5.Checked == true)
            {
                label3.Text = "%";
                textBox1.Text = "";
                textBox2.Text = "";
                textBox3.Text = "";
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked == true)
            {
                textBox3.Text = Convert.ToString((int.Parse(textBox1.Text)) + (int.Parse(textBox2.Text)));
            }
            if (radioButton2.Checked == true)
            {
                textBox3.Text = Convert.ToString((int.Parse(textBox1.Text)) - (int.Parse(textBox2.Text)));
            }
            if (radioButton3.Checked == true)
            {
                textBox3.Text = Convert.ToString((int.Parse(textBox1.Text)) * (int.Parse(textBox2.Text)));
            }
            if (radioButton4.Checked == true)
            {
                textBox3.Text = Convert.ToString((double.Parse(textBox1.Text)) / (double.Parse(textBox2.Text)));
            }
            if (radioButton5.Checked == true)
            {
                textBox3.Text = Convert.ToString((int.Parse(textBox1.Text)) % (int.Parse(textBox2.Text)));
            }
        }
    }
}

3 實現效果

C#如何實現簡易的計算器

C#如何實現簡易的計算器

C#如何實現簡易的計算器

C#如何實現簡易的計算器

C#如何實現簡易的計算器

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#如何實現簡易的計算器”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

如东县| 得荣县| 勃利县| 高平市| 桦甸市| 瑞金市| 师宗县| 荆州市| 法库县| 广元市| 鹤壁市| 萝北县| 望城县| 施秉县| 奉贤区| 岳阳县| 韩城市| 临泽县| 寻甸| 富阳市| 成武县| 琼海市| 西宁市| 东乡族自治县| 根河市| 新晃| 长治县| 葫芦岛市| 广灵县| 龙陵县| 资阳市| 乐业县| 如东县| 澎湖县| 合江县| 新化县| 库尔勒市| 宜川县| 连城县| 迁西县| 五峰|