winform 簡單計算器

2021-08-06 01:13:25 字數 787 閱讀 2081

今天是周五 馬上就要過雙休了  閒著無聊 想起來學習的時候還有個計算器沒寫出來 當時怎麼也整不明白 今天就寫寫試試

自己寫的計算器挺簡單  現在還不能算小數

只用兩個方法就可以做乙個簡單的計算器

1234數字鍵的方法

public void shu(string a)

else

加減乘除單獨乙個方法

呼叫完suanfa 把texbox1清0

public void suanfa(string c)

}else if (t2 == "+")

else if (t2 == "-")

else if (t2 == "*")

else if (t2 == "/")

else

}刪除鍵  按鈕事件

if (textbox1.text.length >1 )

else

等於號  事件

string t1 = textbox1.text;

string t2 = textbox2.text;

t2 = t2.substring(t2.length - 1, 1);

if (t2 == "+")

else if (t2 == "-")

else if (t2 == "*")

else if (t2 == "/")

else

乙個簡單的計算器就這麼完成了

練習 WinForm 計算器

介面設計 練習 計算器 數字鍵的操作 private void button27 click object sender,eventargs e 追加 else 點選了數字 prev 1 運算子的操作 private void button26 click object sender,eventar...

簡單計算器

unit unit1 inte ce uses windows,messages,sysutils,variants,classes,graphics,controls,forms,dialogs,stdctrls,buttons,math math是數 算單元 type tform1 class ...

簡單計算器

a 簡單計算器 crawling in process.crawling failed time limit 1000msmemory limit 32768kb64bit io format i64d i64u submit status description 讀入乙個只包含 的非負整數計算表示...