日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

C#實現計算器功能_C#教程

作者:劇里局外 ? 更新時間: 2022-04-10 編程語言

本文實例為大家分享了C#實現計算器功能的具體代碼,供大家參考,具體內容如下

在剛剛接觸c#的時候,就想做一個簡單加減乘除計算器。這就是目標,可惜一直沒有動手去做,今天特意把它簡單做了。很簡單,很簡單,了卻一個心愿了。代碼:

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 MyPictureDownloader
{
? ? //http://blog.sina.com.cn/s/blog_60d576800100tf5z.html
? ? //http://jingyan.baidu.com/article/380abd0a6b80701d90192cde.html
? ? public partial class JiSuanQi : Form
? ? {
? ? ? ? public JiSuanQi()
? ? ? ? {
? ? ? ? ? ? InitializeComponent();
? ? ? ? ? ? initButton();
? ? ? ? }

? ? ? ? public delegate double Operater(double num1, double num2);
? ? ? ? public void initButton()
? ? ? ? {
? ? ? ? ? ?var p = new Point(20, 80);
? ? ? ? ? ?Button[] listbtn = ?new Button[9];
? ? ? ? ? ? for (int i = 0; i < 9; i++)?
? ? ? ? ? ? {
? ? ? ? ? ? ? ? listbtn[i] = new Button();
? ? ? ? ? ? ? ? listbtn[i].Name = "btn" + (i + 1).ToString();
? ? ? ? ? ? ? ? listbtn[i].Text = (i+1).ToString();
? ? ? ? ? ? ? ? listbtn[i].SetBounds(p.X, p.Y, 50, 50);
? ? ? ? ? ? ? ? listbtn[i].Click+= new System.EventHandler(ClickHandler);
? ? ? ? ? ? ? ? this.Controls.Add(listbtn[i]);
? ? ? ? ? ? ? ? p.X += 80;
? ? ? ? ? ? ? ? if (p.X >= this.Width - 80)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? p.X =20;
? ? ? ? ? ? ? ? ? ? p.Y += 60;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? public void ClickHandler(Object sender, System.EventArgs e)
? ? ? ? {
? ? ? ? ? ? Button btn = (Button)sender; ??
? ? ? ? ? ? string temp=txtnum.Text.ToString()+btn.Text;//這樣解決了重復點擊賦值問題
? ? ? ? ? ? txtnum.Text = temp;
? ? ? ? }

? ? ? ? private void btnzero_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? string temp = txtnum.Text.ToString() + btnzero.Text;//這樣解決了重復點擊賦值問題
? ? ? ? ? ? txtnum.Text = temp;
? ? ? ? }

? ? ? ? public double jisuan(string caozuofu, Operater fanga)
? ? ? ? {
? ? ? ? ? ? double num2 = double.Parse(txtnum.Text);
? ? ? ? ? ? double jieguo = 0;
? ? ? ? ? ? //switch(caozuofu){
? ? ? ? ? ? // ? ?case"+":
? ? ? ? ? ? // ? ? ? ?jieguo = fanga(tempnum, num2);
? ? ? ? ? ? // ? ? ? ?break;
? ? ? ? ? ? // ? ?case "-":
? ? ? ? ? ? // ? ? ? ?jieguo = fanga(tempnum, num2);
? ? ? ? ? ? // ? ? ? ?break;
? ? ? ? ? ? // ? ?case "*":
? ? ? ? ? ? // ? ? ? ?jieguo = fanga(tempnum, num2);
? ? ? ? ? ? // ? ? ? ?break;
? ? ? ? ? ? // ? ?case "/":
? ? ? ? ? ? // ? ? ? ?jieguo = fanga(tempnum, num2);
? ? ? ? ? ? // ? ? ? ?break;
? ? ? ? ? ? //}
? ? ? ? ? ? jieguo = fanga(tempnum, num2);
? ? ? ? ? ? return jieguo;
? ? ? ? }

? ? ? ? public double add(double num1, double num2)?
? ? ? ? {
? ? ? ? ? ? return num1 + num2;
? ? ? ? }

? ? ? ? public double jian(double num1, double num2)
? ? ? ? {
? ? ? ? ? ? return num1- num2;
? ? ? ? }

? ? ? ? public double cheng(double num1, double num2)
? ? ? ? {
? ? ? ? ? ? return num1 * num2;
? ? ? ? }

? ? ? ? public double chu(double num1, double num2)
? ? ? ? {
? ? ? ? ? ? double result = 0;
? ? ? ? ? ? if (num2!=0)
? ? ? ? ? ? {
? ? ? ? ? ? result= num1 / num2;
? ? ? ? ? ? }
? ? ? ? ? ? return result;
? ? ? ? }
? ? ? ? public double tempnum = 0;
? ? ? ? public string caozuofu = "";
? ? ? ? public event Operater fangfa;
? ? ? ? private void btnresult_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? txtnum.Text = jisuan(caozuofu, fangfa).ToString();
? ? ? ? }

? ? ? ? private void btnadd_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? tempnum = double.Parse(txtnum.Text);
? ? ? ? ? ? caozuofu = btnadd.Text;
? ? ? ? ? ? txtnum.Text = "";
? ? ? ? ? ? fangfa = add;
? ? ? ? }

? ? ? ? private void btnde_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? tempnum = double.Parse(txtnum.Text);
? ? ? ? ? ? caozuofu = btnde.Text;
? ? ? ? ? ? txtnum.Text = "";
? ? ? ? ? ? fangfa = jian;
? ? ? ? }

? ? ? ? private void btncheng_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? tempnum = double.Parse(txtnum.Text);
? ? ? ? ? ? caozuofu = btncheng.Text;
? ? ? ? ? ? txtnum.Text = "";
? ? ? ? ? ? fangfa = cheng;
? ? ? ? }

? ? ? ? private void btnchu_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? tempnum = double.Parse(txtnum.Text);
? ? ? ? ? ? caozuofu = btnchu.Text;
? ? ? ? ? ? txtnum.Text = "";
? ? ? ? ? ? fangfa = chu;
? ? ? ? }

? ? ? ? private void btndian_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? if (txtnum.Text.ToString()=="")?
? ? ? ? ? ? {
? ? ? ? ? ? ? ? txtnum.Text = "0";
? ? ? ? ? ? }
? ? ? ? ? ? string temp="";
? ? ? ? ? ? if (txtnum.Text.ToString().IndexOf(".") > 0)//解決只能包含一個小數點
? ? ? ? ? ? {
? ? ? ? ? ? ? ? temp = txtnum.Text.ToString();
? ? ? ? ? ? }
? ? ? ? ? ? else?
? ? ? ? ? ? {
? ? ? ? ? ? ? ? temp = txtnum.Text.ToString() + btndian.Text;//這樣解決了重復點擊賦值問題
? ? ? ? ? ? }
? ? ? ? ? ? txtnum.Text = temp;
? ? ? ? }
? ? }
}

初始界面:

運行后的界面:

幾個數字按鈕是動態生成的,這就是我想要做的計算器。

原文鏈接:https://www.cnblogs.com/xiaohuasan/p/5624426.html

欄目分類
最近更新