C\#실 현 된 간단 한 정수 사 칙 연산 계산기 기능 예시
실행 효과 그림 은 다음 과 같 습 니 다:
구체 적 인 코드 는 다음 과 같다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public string num;
public int flag;//
public double num1, num2;
private void num0_button_Click(object sender, EventArgs e)
{
num = num + "0";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
private void num1_button_Click(object sender, EventArgs e)// 1
{
if (textBox.Text == "0")
{
num = "1";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "1";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num2_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "2";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "2";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num3_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "3";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "3";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num4_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "4";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "4";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num5_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "5";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "5";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num6_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "6";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "6";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num7_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "7";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "7";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num8_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "8";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "8";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void num9_button_Click(object sender, EventArgs e)
{
if (textBox.Text == "0")
{
num = "9";
textBox.Text = Convert.ToString(num);
}
else
{
num = num + "9";
num2 = Convert.ToDouble(num);
textBox.Text = num;
}
}
private void add_button_Click(object sender, EventArgs e)// 2
{
if (textBox.Text.Length > 0)
{
num1 = Convert.ToDouble(textBox .Text);
num = "";
flag = 1;
textBox.Text = "";
textBox.Focus();
}
}
private void dev_button_Click(object sender, EventArgs e)
{
if (textBox.Text.Length > 0)
{
num1 = Convert.ToDouble(textBox.Text);
num = "";
flag = 2;
textBox.Text = "";
textBox.Focus();
}
}
private void mul_button_Click(object sender, EventArgs e)
{
if (textBox.Text.Length > 0)
{
num1 = Convert.ToDouble(textBox.Text);
num = "";
flag = 3;
textBox.Text = "";
textBox.Focus();
}
}
private void chu_button_Click(object sender, EventArgs e)
{
if (textBox.Text.Length > 0)
{
num1 = Convert.ToDouble(textBox.Text);
num = "";
flag = 4;
// textBox.Text = "";
textBox.Focus();
}
}
private void equ_button_Click(object sender, EventArgs e)
{
switch (flag)
{
case 1:
textBox.Text = Convert.ToString(num1+Convert .ToDouble(num));// 3
num2 = Convert.ToDouble(textBox .Text);
break;
case 2:
textBox.Text = Convert.ToString(num1 - Convert.ToDouble(num));
num2 = Convert.ToDouble(textBox.Text);
break;
case 3:
textBox.Text = Convert.ToString(num1 * Convert.ToDouble(num));
num2 = Convert.ToDouble(textBox.Text);
break;
case 4:
textBox.Text = Convert.ToString(num1 / Convert.ToDouble(num));
num2 = Convert.ToDouble(textBox.Text);
break;
}
}
private void re_button_Click(object sender, EventArgs e)
{
num = "";
textBox.Text = "0";
}
}
}
PS:여기 서 여러분 께 몇 가지 계산 도 구 를 추천 하여 참고 하 시기 바 랍 니 다.온라인 일원 함수(방정식)구 해 계산 도구:
http://tools.jb51.net/jisuanqi/equ_jisuanqi
과학 계산기 온라인 사용고급 계산기 온라인 계산:
http://tools.jb51.net/jisuanqi/jsqkexue
온라인 계산기표준 계산기:
http://tools.jb51.net/jisuanqi/jsq
더 많은 C\#관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 C\#프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.