


下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
1、vb 簡單的計算機源代碼 .txt 如果青春的時光在閑散中度過, 那么回憶歲月將是一場凄涼的悲 劇。雜草多的地方莊稼少,空話多的地方智慧少。即使路上沒有花朵,我仍可以欣賞荒蕪。 Private Sub Command1_Click()Form1.Caption =" 歡迎使用智能計算器 " '載入默認(rèn)正常顯示If Check1.Value ="0" Then '1類分歧ElseIf Text1.Text= "" Or Text2.Text = "" Then'2類分歧Form1.Captio
2、n ="xataliq kuruldi"Text3.Text = "運算數(shù)值不能為空 "ElseIf Text1.Text= "" And Text2.Text = "" Then'2類分歧Form1.Caption ="xataliq kuruldi"Text3.Text = "運算數(shù)值不能為空 "Else'2類分歧Dim a, b, c As Double a = Val(Text1.Text) b = Val(Text2.Text) c = a + b
3、Text3.Text = c Text1.Text = "" Text2.Text = ""End IfIf Check1.Value = "1" Then'1類分歧ElseIf Text1.Text= "" Or Text2.Text ="" Then '2類分歧Form1.Caption ="xataliq kuruldi"Text3.Text = "運算數(shù)值不能為空IIElseIf Text1.Text= "" And Te
4、xt2.Text= "" Then'2類分歧Form1.Caption ="xataliq kuruldi"Text3.Text = "運算數(shù)值不能為空IIElse'2類分歧Dim d, e, f As Double d = Val(Text1.Text) e = Val(Text2.Text)f = d + eText3.Text = fEnd IfEnd SubPrivate Sub Command2_Click()Form1.Caption = " 歡迎使用智能計算器 " If Check1.Value
5、 = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不
6、能為空 "ElseDim d, e, f As Doubled = Val(Text1.Text)e = Val(Text2.Text)f = d - eText3.Text = fEnd IfIf Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text
7、 = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseDim a, b, c As Doublea = Val(Text1.Text)b = Val(Text2.Text)c = a - bText3.Text = cText1.Text = ""Text2.Text = ""End IfEnd SubPrivate Sub Command3_Cl
8、ick() Form1.Caption = " 歡迎使用智能計算器 "If Check1.Value = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.C
9、aption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseDim d, e, f As Doubled = Val(Text1.Text)e = Val(Text2.Text)f = d * eText3.Text = fEnd IfIf Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuru
10、ldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseDim a, b, c As Doublea = Val(Text1.Text)b = Val(Text2.Text)c = a * bText3.Text = cText1.Text = ""
11、Text2.Text = ""End IfEnd SubPrivate Sub Command4_Click() Form1.Caption = " 歡迎使用智能計算器 "If Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.T
12、ext = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Val(Text2.Text) = "0" Then Form1.Caption = "xataliq kuruldi"Text3.Text = " 分?jǐn)?shù)的分子不能為零 "ElseDim a, b, c As Doublea = Val(Text1.Text)b
13、= Val(Text2.Text)c = a / bText3.Text = cText1.Text = ""Text2.Text = ""End IfIf Check1.Value = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi" Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = &q
14、uot;" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空ElseIf Val(Text2.Text) = "0" ThenForm1.Caption = "xataliq kuruldi" Text3.Text = " 分?jǐn)?shù)的分子不能為零 ElseDim d, e, f As Double d = Val(Text1.Text) e = Val(Text2.Text) f
15、 = d / eText3.Text = fEnd IfEnd SubPrivate Sub Command5_Click()Form1.Caption = " 歡迎使用智能計算器Text1.Text = ""Text2.Text = ""Text3.Text = ""End SubPrivate Sub Command6_Click()Form1.Caption = " 歡迎使用智能計算器Form1.HideForm3.ShowEnd SubPrivate Sub Command7_Click()EndEnd S
16、ubPrivate Sub Command8_Click()Form1.Caption = " 歡迎使用智能計算器If Text3.Text <> "" ThenText1.Text = Text3.TextText2.Text = ""Text3.Text = ""ElseForm1.Caption = "xataliq kuruldi"Text3.Text = " 沒有結(jié)果無法繼續(xù) "End IfEnd SubPrivate Sub Text2_Change()End
17、SubPrivate Sub 乘 _Click()Form1.Caption = " 歡迎使用智能計算器 "If Check1.Value = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi" Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = &quo
18、t;" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseDim d, e, f As Doubled = Val(Text1.Text)e = Val(Text2.Text)f = d * eText3.Text = fEnd IfIf Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption
19、= "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseDim a, b, c As Doublea = Val(Text1.Text)b = Val(Text2.Text)c = a * bText3.Text = cText1
20、.Text = ""Text2.Text = ""End IfEnd SubPrivate Sub 除 _Click()Form1.Caption = " 歡迎使用智能計算器If Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi" Text3.Text = " 運算數(shù)值不能為空 "ElseIf
21、 Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Val(Text2.Text) = "0" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 分?jǐn)?shù)的分子不能為零 "ElseDim a, b, c As Doublea = Val(Text1.
22、Text)b = Val(Text2.Text)c = a / bText3.Text = cText1.Text = ""Text2.Text = ""End IfIf Check1.Value = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi" Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Te
23、xt = "" And Text2.Text = "" ThenForm1.Caption = " 錯誤 "Text3.Text = " 運算數(shù)值不能為空 "ElseIf Val(Text2.Text) = "0" Then Form1.Caption = " 錯誤 "Text3.Text = " 分?jǐn)?shù)的分子不能為零 "ElseDim d, e, f As Doubled = Val(Text1.Text)e = Val(Text2.Text)f = d
24、/ eText3.Text = fEnd IfEnd SubPrivate Sub munasiwetlik_Click()Form1.Caption = " 歡迎使用智能計算器Form1.HideForm3.ShowIIPrivate Sub 繼續(xù) _Click()Form1.Caption = " 歡迎使用智能計算器If Text3.Text <> "" ThenText1.Text = Text3.TextText2.Text = ""Text3.Text = ""ElseForm1.Captio
25、n = "xataliq"Text3.Text = " 沒有結(jié)果無法繼續(xù) "End IfEnd SubPrivate Sub 加 _Click()Form1.Caption = " 歡迎使用智能計算器 "If Check1.Value = "0" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi"Text3.Text = " 運算
26、數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = " 錯誤 "Text3.Text = " 運算數(shù)值不能為空 "ElseDim a, b, c As Doublea = Val(Text1.Text)b = Val(Text2.Text)c = a + bText3.Text = cText1.Text = ""Text2.Text = ""End IfIf Check1.V
27、alue = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運算數(shù)值不能為空 "ElseIf Text1.Text = "" And Text2.Text = "" ThenForm1.Caption = "xataliq kuruldi"Text3.Text = " 運
28、算數(shù)值不能為空 "ElseDim d, e, f As Doubled = Val(Text1.Text)e = Val(Text2.Text)f = d + eText3.Text = fEnd IfEnd SubPrivate Sub 減 _Click()Form1.Caption = " 歡迎使用智能計算器 "If Check1.Value = "1" ThenElseIf Text1.Text = "" Or Text2.Text = "" Then Form1.Caption = "xataliq kuruldi" Text3.Text = " 運算數(shù)值不能為
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年廣東水利電力職業(yè)技術(shù)學(xué)院單招綜合素質(zhì)考試題庫及參考答案一套
- 2025年廣安職業(yè)技術(shù)學(xué)院單招職業(yè)適應(yīng)性考試題庫審定版
- 2025年廣東省云浮市單招職業(yè)適應(yīng)性考試題庫新版
- 2025年貴州航空職業(yè)技術(shù)學(xué)院單招職業(yè)適應(yīng)性考試題庫及完整答案1套
- 2025年廣東舞蹈戲劇職業(yè)學(xué)院單招職業(yè)技能測試題庫a4版
- 2025年廣東輕工職業(yè)技術(shù)學(xué)院單招職業(yè)技能考試題庫標(biāo)準(zhǔn)卷
- 2025年大連職業(yè)技術(shù)學(xué)院單招職業(yè)適應(yīng)性考試題庫完整版
- 2025年廣西工程職業(yè)學(xué)院單招職業(yè)傾向性測試題庫完美版
- 2025年福建省泉州市單招職業(yè)傾向性考試題庫參考答案
- 電力工程設(shè)備供應(yīng)與安裝合同
- 《廉頗藺相如列傳》教案 2023-2024學(xué)年高教版(2023)中職語文基礎(chǔ)模塊下冊
- 為別人生小孩協(xié)議書模板
- JGJ 111-2016 建筑與市政工程地下水控制技術(shù)規(guī)范
- NB-T31065-2015風(fēng)力發(fā)電場調(diào)度運行規(guī)程
- 2024山東能源集團中級人才庫選拔【重點基礎(chǔ)提升】模擬試題(共500題)附帶答案詳解
- 油田設(shè)備租賃行業(yè)市場現(xiàn)狀供需分析及市場深度研究發(fā)展前景及規(guī)劃行業(yè)投資戰(zhàn)略研究報告(2024-2030)
- 幼兒園小班科學(xué)課件:《新年的禮物》
- 四川省綿陽市東辰學(xué)校2023-2024學(xué)年七年級下學(xué)期3月月考語文卷
- 中國古典風(fēng)格設(shè)計
- 社會實踐報告表格范本
- 統(tǒng)編版語文五年級下冊第一單元習(xí)作:那一刻我長大了 課件
評論
0/150
提交評論