最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#實(shí)現(xiàn)簡(jiǎn)易的計(jì)算器

 更新時(shí)間:2021年04月30日 08:28:01   作者:敲代碼兩年半的練習(xí)生  
這篇文章主要為大家詳細(xì)介紹了C#實(shí)現(xiàn)簡(jiǎn)易的計(jì)算器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了C#實(shí)現(xiàn)簡(jiǎn)易的計(jì)算器的具體代碼,供大家參考,具體內(nèi)容如下

1 題目描述

(1)Form1窗體設(shè)計(jì)界面如下:

(2)運(yùn)算類型的下列列表中包括:加法、減法、乘法、除法、取模共5種操作;初始狀態(tài)下,選擇“加法”運(yùn)算,當(dāng)用戶更改運(yùn)算類型時(shí),下面式子中的加號(hào)“+”應(yīng)自動(dòng)更改為相應(yīng)的運(yùn)算符;

(3)當(dāng)用戶在前兩個(gè)文本框中輸入時(shí),最后得到結(jié)果的文本框始終是空白狀態(tài),注意該文本框是只讀的,用戶不能更改其值;只有當(dāng)用戶單擊確定按鈕時(shí),結(jié)果文本框中才會(huì)顯示正確的計(jì)算結(jié)果;

(4)使用過(guò)程中,用戶修改運(yùn)算類型時(shí),三個(gè)文本框的內(nèi)容自動(dòng)清空;

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 實(shí)現(xiàn)效果

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

金华市| 内黄县| 行唐县| 湛江市| 汉寿县| 凌海市| 烟台市| 罗定市| 阿拉善右旗| 和政县| 益阳市| 孟津县| 墨江| 增城市| 巨鹿县| 江油市| 夹江县| 米脂县| 汕尾市| 江西省| 靖边县| 容城县| 新田县| 孝昌县| 萨嘎县| 清苑县| 红河县| 元氏县| 哈巴河县| 金山区| 易门县| 临潭县| 温州市| 晋州市| 祁门县| 土默特右旗| 和静县| 东光县| 仪征市| 南投市| 民权县|