溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

C#怎么實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能

發(fā)布時(shí)間:2022-02-07 10:51:16 來(lái)源:億速云 閱讀:150 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇“C#怎么實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“C#怎么實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能”文章吧。

1.界面設(shè)計(jì)

C#怎么實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能

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 calculator3
{
    public partial class Form1 : Form
    {
        private string num1, num2;//計(jì)算器的操作數(shù),成員變量
        private string opr;//操作符
        public Form1()
        {
            InitializeComponent();
        }
        //數(shù)字按鈕點(diǎn)擊事件的方法
        private void NumClick(object sender, EventArgs e)
        {
            Button button = (Button)sender;
            if (string.IsNullOrEmpty(opr))//如果還沒(méi)有輸入操作符
            {
                num1 = num1 + button.Text;//輸入第一個(gè)參與運(yùn)算的數(shù);字符串的鏈接個(gè)十百千
            }
            else
            {
                num2 = num2 + button.Text;//輸入第二個(gè)參與運(yùn)算的數(shù);字符串的鏈接個(gè)十百千
            }
            txtResult.Text = txtResult.Text + button.Text;
        }
        //操作符按鈕點(diǎn)擊事件的方法
        private void oprClick(object sender, EventArgs e)
        {
            Button button=(Button)sender;
            if (String.IsNullOrEmpty(num2))//如果還沒(méi)有輸入數(shù)字,則不允許按操作符
            {
                MessageBox.Show("此時(shí)不應(yīng)該按入操作符!");
                return;
            }
            opr = button.Text;
            txtResult.Text = txtResult.Text + button.Text;
        }
        //“=”事件,即計(jì)算
        private void btnGet_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(opr)

                || String.IsNullOrEmpty(num1)
                || String.IsNullOrEmpty(num2))
            {
                MessageBox.Show("您輸入的內(nèi)容有誤!");
                return;
            }
          
            
                txtResult.Text = txtResult.Text + "=";//將“=”拼接到框框里
            //進(jìn)行兩個(gè)數(shù)的運(yùn)算
                switch (opr)
                { 
                    case "+":
                        txtResult.Text = txtResult.Text + (Int32.Parse(num1) + Int32.Parse(num2));
                        break;
                    case "-":
                        txtResult.Text = txtResult.Text + (Int32.Parse(num1) - Int32.Parse(num2));
                        break;
                    case "*":
                        txtResult.Text = txtResult.Text + (Int32.Parse(num1) * Int32.Parse(num2));
                        break;
                    case "/":
                        if (num2 == "0")
                        {
                            MessageBox.Show("除數(shù)不可以為零!");
                        }
                        txtResult.Text = txtResult.Text + (Int32.Parse(num1) / Int32.Parse(num2));
                        break;
                }
            

        }
        //清除事件
        private void btnClear_Click(object sender, EventArgs e)
        {
            txtResult.Text = "";
            num1 = "";
            num2 = "";
            opr = "";
        }   
    }
}

3.總結(jié)分析

按鈕點(diǎn)擊事件:當(dāng)多數(shù)按鈕的點(diǎn)擊效果一致時(shí),可使用同一個(gè)Click事件(名字一致即可)

//僅作舉例使用
//關(guān)鍵代碼
Button button = (Button)sender;
//此時(shí)字符串的鏈接
num1 = num1 + button.Text;//輸入第一個(gè)參與運(yùn)算的數(shù);字符串的鏈接個(gè)十百千

以上就是關(guān)于“C#怎么實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器功能”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI