利用c#語言編寫簡單計算器:
核心知識點:
原始碼如下:messagebox.show(convert.tostring(combobox1.selectedindex));//下拉序號messagebox.show(convert.tostring(combobox1.selecteditem));//下拉內容
messagebox.show(convert.tostring(combobox1.selectedtext));//資料庫會用到
messagebox.show(convert.tostring(combobox1.selectedvalue));//資料庫會用到
using程式截圖:system;
using
system.collections.generic;
using
system.componentmodel;
using
system.data;
using
system.drawing;
using
system.text;
using
system.windows.forms;
namespace
簡單計算器
private
void button1_click(object
sender, eventargs e)//加法
if (int.tryparse(str2, out i2) == false)//
將第二個文字框內容字串轉換成整型資料
int i3 = i1 + i2;//
進行運算
textbox3.text = convert.tostring(i3);//
等價於textbox3 = i3.tostring();
}
private
void button2_click(object sender, eventargs e)//
單擊隱藏文字框
private
void button3_click(object sender, eventargs e)//
單擊顯示文字框
private
void button4_click(object
sender, eventargs e)//減法
if (!int.tryparse(str4,out
i4))
int i5 = i3 -i4;
textbox6.text =convert.tostring(i5);
}private
void button5_click(object
sender, eventargs e)//乘法
if (!int.tryparse(str4, out
i4))
int i5 = i3 *i4;
textbox9.text =convert.tostring(i5);
}private
void button6_click(object
sender, eventargs e)//除法
if (!int.tryparse(str4, out
i4))
int i5 = i3 /i4;
textbox12.text =convert.tostring(i5);}}
}
計算器版本2.0
原始碼如下:
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
計算器2._0
private
void button1_click(object
sender, eventargs e)
result = i1 /i2;
break
;
default://
防患於未然
throw
new exception("
未知的運算子
");
}textbox3.text =convert.tostring(result);}}
}
簡單記下 PostgreSQL基礎1
通過cmd進入命令框,到達對應的bin目錄,如 d postgresql 9.6 bin 1 執行語句 psql.exe u postgres進行登入 預設使用者名稱是postgres 接著輸入登入密碼 2 執行語句 create database shop 建立乙個庫名字為shop的資料庫,建立成...
C基礎學習的簡單記錄 基礎練習(1)
當然,還是這個c面世的標誌開始吧。start int main 數學系列 1.列印100 200 之間的素數 include include int main if i j printf n system pause return 0 優化之後 define crt secure no warnin...
day1使用postman製作乙個簡單的爬蟲
新手自學首先使用postman製作乙個超級的簡單的爬蟲 目的是為了學會軟體的基本操作,postman和pycharm這兩個軟體 首先隨便開啟乙個頁面 右擊檢查找到network preserve log disable dos coy as url bash 複製裡面的鏈結 然後在通過postman...