开发工具:
文件大小: 962byte
下载次数: 0
上传时间: 2013-05-28
详细说明: 用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 WindowsFormsApplication1 { public partial class Form1 : Form { private float num1,num2; private float res; private char operType; private bool operFlag; public Form1() { InitializeComponent(); operFlag = false; } private void textBox2_ TextChanged(object sender, EventArgs e) { } private void button15_Click(object sender, EventArgs e)//数字0,数字点击事件 { if (operFlag) { textBox2.Text = ""; operFlag = false; } Button b = (Button)sender; textBox2.Text += b.Text; } //private void button4_Click(object sender, EventArgs e)//加号 //{ // num1 = Convert.ToSingle(textBox2.Text); //} private void button21_Click(object sender, EventArgs e)//等于号 { num2 = Convert.ToSingle(textBox2.Text); switch (operType) { case '+' : res = num1 + num2 ;break; case '-' : res = num1 - num2 ;break; case '*' : res = num1 * num2 ;break; case '/' : res = num1 / num2 ;break; case '%' : res = num1 % num2; break; } textBox2.Text = res.ToString();//将结果转换成字符串输出 } private void button6_Click(object sender, EventArgs e)//减号,运算符点击事件 { num1 = Convert.ToSingle(textBox2.Text); operFlag = true; Button c = (Button)sender; operType = Convert.ToChar(c.Text); } private void button27_Click(object sender, EventArgs e)//清除键 { num1 = 0; num2 = 0; textBox2.Text = ""; } private void button25_Click(object sender, EventArgs e)//正负号 { //operFlag = true; Button d = (Button)sender; //operType = Convert.ToChar(d.Text); num1=num1*(-1); //num2 = 1; textBox2.Text = num1.ToString(); } private void button22_Click(object sender, EventArgs e)//小数点 { int pos = textBox2.Text.LastIndexOf('.'); if (pos == -1) textBox2.Text += "."; } } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.