溫馨提示×

溫馨提示×

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

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

C#實現(xiàn)簡單計算器功能的腳本怎么寫

發(fā)布時間:2022-02-07 15:59:56 來源:億速云 閱讀:159 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了C#實現(xiàn)簡單計算器功能的腳本怎么寫的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇C#實現(xiàn)簡單計算器功能的腳本怎么寫文章都會有所收獲,下面我們一起來看看吧。

先來張效果圖吧(5分鐘寫好,莫怪)

C#實現(xiàn)簡單計算器功能的腳本怎么寫

代碼:

數(shù)字按鈕綁定的是button_Clickd()方法

運算符按鈕綁的是Button_Clickp()方法

思想:按下數(shù)字按鈕,將數(shù)字按鈕的值連接到textbox上,然后按下運算符判斷是否為等于,并記錄運算符的內(nèi)容,以便后面做處理。

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 WindowsFormsApplication4
{
    public partial class Form2 : Form
    {
        private string s;
        private double x, y;
        private Button btn;
       
        public Form2()
        {
            InitializeComponent();
        }
 
 
        private void Form2_Load(object sender, EventArgs e)
        {
            textBox1.Text = "";
            label1.Text="";
 
        }
        private void buttond_Click(object sender, EventArgs e)//數(shù)字符所綁定的事件
        {
            btn = (Button)sender;
            textBox1.Text = textBox1.Text + btn.Text;//將所點擊的數(shù)字付呈現(xiàn)在textBox上面
 
        }
        private void buttonp_Click(object sender, EventArgs e)//運算符所綁定的事件
        {
            btn = (Button)sender;
            if (btn.Name != "button12")//如果不是"="
            {
                x = Convert.ToDouble(textBox1.Text);//將所所輸入的第一個字符保留下來
                textBox1.Text = "";//清空textBox的內(nèi)容
                s = btn.Name;//獲取運算符的種類
                label1.Text = x.ToString();//將第一個所按的字符輸出來
 
 
            }
            else
            {
                if (label1.Text == "")
                    MessageBox.Show("輸入不正確!!", "信息提示", MessageBoxButtons.OK);
                else
                {
                    y = Convert.ToDouble(textBox1.Text);
                    switch (s)//使用s來判讀所按的按鈕
                    {
                        case "button13":
                            textBox1.Text = (x + y).ToString();
                            break;
                        case "button14":
                            textBox1.Text = (x - y).ToString();
                            break;
                        case "button15":
                            textBox1.Text = (x * y).ToString();
                            break;
 
                        case "button16":
                            if (y == 0)
                                MessageBox.Show("除零錯誤!!!", "信息提示", MessageBoxButtons.OK);
                            else
                                textBox1.Text = (x / y).ToString();
 
 
                            break;
                    }
                    label1.Text = textBox1.Text;
                }
 
 
 
            }
        }
 
 
    }
}

關(guān)于“C#實現(xiàn)簡單計算器功能的腳本怎么寫”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“C#實現(xiàn)簡單計算器功能的腳本怎么寫”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI