C#多功能计算器
1.设计工具
Microsoft Visual 2017
2.设计内容
运用C#知识,新建一个Windows应用程序,制作一个多功能计算器。
3.设计步骤
(1)新建一个程序项目,窗体默认为 Form1.cs。
(2)设置窗体的Text属性为“多功能计算器”,设置Font属性为宋体、小五。
(3)添加控件
向窗体中添加一个TextBox控件textBox1,一个GroupBox控件groupBox1,二十四个Button控件button1~button24。
4.实现方法
(1)利用textBox1的Text属性,进行存储字符;
(2)定义两个浮点变量a,b,一个布尔类型的变量c(用于清空textBox1的Text),一个字符串类型变量d(用于表示计算器的运算符);
(3)利用条件语句switch语句对计算器的功能进行存储;
(4)利用C#自带的Math函数及基本的运算方法,实现运算功能。
5.程序源代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace calculate
{
public partial class Form1 : Form
{
double a = 0;
double b = 0;
bool c = false;
string d;
public Form1()
{
InitializeComponent();
}
private void button13_Click(object sender, EventArgs e)
{
if (c =&#