ImageVerifierCode 换一换
格式:DOCX , 页数:22 ,大小:62.55KB ,
资源ID:2265403      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bingdoc.com/d-2265403.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(风铃科学计算器程序代码vb.docx)为本站会员(b****1)主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(发送邮件至service@bingdoc.com或直接QQ联系客服),我们立即给予删除!

风铃科学计算器程序代码vb.docx

1、风铃科学计算器程序代码vb风铃计算器程序代码青春风铃西南交通大学Dim sum As Double, Expr, A, B, D, Cha As StringDim Time As IntegerDim leftbracket, rbracket As IntegerDim Bo1, Bo2, Sto As BooleanPublic Function Fact(n As Long) As Double If n 0 Then If n = 1 Then Fact = 1 Else Fact = n * Fact(n - 1) End If ElseIf n = 0 Then Fact = 1

2、 Else If n = -1 Then Fact = -1 Else Fact = n * Fact(n + 1) End If End IfEnd FunctionPrivate Function leftfind(ByVal Expr As String, Where As Long) As String Dim i, leftbracket, rbracket As Integer Dim numl As String If Mid(Expr, Where - 1, 1) = ) Then -左有括号 For i = Where To 1 Step -1 If Mid(Expr, i,

3、 1) = ) Then rbracket = rbracket + 1 ElseIf Mid(Expr, i, 1) = ( Then lbracket = lbracket + 1 End If If lbracket = rbracket And lbracket 0 Then numl = Mid(Expr, i, Where - i) Exit For End If Next i Else -无括号 For i = Where - 1 To 1 Step -1 numl = Mid(Expr, i, 1) If numl = + Or numl = - Or numl = * Or

4、numl = / Or numl = ( Then numl = Mid(Expr, i + 1, Where - i - 1) Exit For End If If i = 1 Then numl = Mid(Expr, 1, Where - 1) Exit For End If Next i End If leftfind = numlEnd FunctionPrivate Function rightfind(ByVal Expr As String, Where As Long) As String Dim i, leftbracket, rbracket As Integer Dim

5、 numr As String If Mid(Expr, Where + 1, 1) = ( Then -右有括号 For i = Where + 1 To Len(Expr) If Mid(Expr, i, 1) = ) Then rbracket = rbracket + 1 ElseIf Mid(Expr, i, 1) = ( Then lbracket = lbracket + 1 End If If lbracket = rbracket And lbracket 0 Then numr = Mid(Expr, Where + 1, i - Where) Exit For End I

6、f Next i Else -无括号 For i = Where + 1 To Len(Expr) numr = Mid(Expr, i, 1) If numr = + Or numr = - Or numr = * Or numr = / Or numl = ( Then numr = Mid(Expr, Where + 1, i - Where - 1) Exit For End If If i = Len(Expr) Then numr = Mid(Expr, Where + 1, i - Where) Exit For End If Next i End If rightfind =

7、numrEnd FunctionPrivate Sub jingdian_Click(Index As Integer) Frame1.BackColor = &H8080FF Frame2.BackColor = &H80FF80 Frame3.BackColor = &HFF80FF Text2.BackColor = &H80FF80 For i = 0 To 11 Label1(i).BackColor = &HFF80FF Next i jingdian(0).Enabled = False chuantong(1).Enabled = True pinhong(2).Enabled

8、 = TrueEnd SubPrivate Sub chuantong_Click(Index As Integer) Frame1.BackColor = &H8000000F Frame2.BackColor = &H8000000F Frame3.BackColor = &H8000000F Text2.BackColor = &H8000000F For i = 0 To 11 Label1(i).BackColor = &H8000000F Next i jingdian(0).Enabled = True chuantong(1).Enabled = False pinhong(2

9、).Enabled = TrueEnd SubPrivate Sub pinhong_Click(Index As Integer) Frame1.BackColor = &HFF80FF Frame2.BackColor = &HFF80FF Frame3.BackColor = &HFF80FF Text2.BackColor = &HFF80FF For i = 0 To 11 Label1(i).BackColor = &HFF80FF Next i jingdian(0).Enabled = True chuantong(1).Enabled = True pinhong(2).En

10、abled = FalseEnd SubPrivate Sub Form_Load() A = 0: B = 0: D = 0 Sto = False: Bo = False Text1.Text = 0 Text2.Text = 青春风铃 欢迎您的使用! jingdian(0).Enabled = False End Sub-状态栏代码-Private Sub Frame1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 数字键End Su

11、bPrivate Sub Frame2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 运算符End SubPrivate Sub Frame3_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 功能区,选中Shift时执行附加功能End SubPrivate Sub Command4_Mou

12、seMove(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single) Select Case Index Case 0 StatusBar1.Panels(2).Text = 退格 Case 1 StatusBar1.Panels(2).Text = 清除 Case 2 StatusBar1.Panels(2).Text = 左括号 Case 3 StatusBar1.Panels(2).Text = 右括号 Case 4 StatusBar1.Panels(2).Text = 等于号 E

13、nd SelectEnd SubPrivate Sub Text1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 风铃计算表达式End SubPrivate Sub Text2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 风铃计算结果End SubPrivate Sub Check1_

14、MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 功能转换键End SubPrivate Sub Check2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) StatusBar1.Panels(2).Text = 选中为角度模式,否则为弧度模式End Sub-数字键的输入-Private Sub Command1_Click(Index As I

15、nteger) If Time 1 Then Text1.Text = 清空表达式 Time = 1 End If If Index = 9 Then Text1.Text = Text1.Text & Index ElseIf Index = 10 Then Text1.Text = Text1.Text & . Else Text1.Text = Text1.Text & pi End IfEnd Sub-运算符的输入-Private Sub Command2_Click(Index As Integer) If Time = 0 Then Text1.Text = ElseIf Time

16、 = 2 Then Text1.Text = Ans End If Time = 1 Select Case Index Case 0 Text1.Text = Text1.Text & + Case 1 Text1.Text = Text1.Text & - Case 2 Text1.Text = Text1.Text & * Case 3 Text1.Text = Text1.Text & / End SelectEnd Sub-函数功能的输入-Private Sub Command3_Click(Index As Integer) -前处理- If Index = 2 Or (Index

17、 = 8 And Check1.Value = 0) Then If Time = 2 Then Text1.Text = Ans 引用结果 End If Else If Time 1 Then Text1.Text = 清空表达式 End If End If -附加功能- If Check1.Value = 0 Then Select Case Index Case 8 1/x Text1.Text = Text1.Text & -1 Case 9 ncr Text1.Text = Text1.Text & C Case 10 npr Text1.Text = Text1.Text & P

18、Case 11 x! Text1.Text = Text1.Text & ! End Select ElseIf Check1.Value = 1 And Sto = False Then If Time 1 And Index = 11 Then Text1.Text = Ans End If Select Case Index Case 8 If Time 1 Then Text1.Text = A= Text2.Text = A Else Text1.Text = Text1.Text & A End If Case 9 If Time 1 Then Text1.Text = B= Te

19、xt2.Text = B Else Text1.Text = Text1.Text & B End If Case 10 If Time 1 Then Text1.Text = D= Text2.Text = D Else Text1.Text = Text1.Text & D End If Case 11 If Time 1 Then Text1.Text = Ans Else Text1.Text = Text1.Text & End If Sto = True End Select Else check1.value=1 and sto=1 Select Case Index Case

20、8 Text1.Text = Text1.Text & A Case 9 Text1.Text = Text1.Text & B Case 10 Text1.Text = Text1.Text & D End Select Bo = True End If If Bo = True Then Bo = False Command4_Click (4) End If -基本功能输入- If Check1.Value = 0 Then Select Case Index Case 0 幂运算 Text1.Text = Text1.Text & Case 1 平方 Text1.Text = Text

21、1.Text & 2 Case 2 立方 Text1.Text = Text1.Text & 3 Case 3 log Text1.Text = Text1.Text & ln( Case 4 sin Text1.Text = Text1.Text & sin( Case 5 cos Text1.Text = Text1.Text & cos( Case 6 tan Text1.Text = Text1.Text & tan( Case 7 lg Text1.Text = Text1.Text & lg( End Select Else Select Case Index Case 0 根式运

22、算 Text1.Text = Text1.Text & Rn( Case 1 平方根 Text1.Text = Text1.Text & (1/2) Case 2 立方根 Text1.Text = Text1.Text & (1/3) Case 3 ex Text1.Text = Text1.Text & e( Case 4 asin Text1.Text = Text1.Text & asin( Case 5 acos Text1.Text = Text1.Text & acos( Case 6 tan Text1.Text = Text1.Text & atn( Case 7 ln Tex

23、t1.Text = Text1.Text & 10( End Select End If Time = 1End Sub-常用按钮及等号的代码-Private Sub Command4_Click(Index As Integer) Dim Where As Long Dim numl, numr, str As String Dim n, r As Double Dim i, j, lbracket, rbracket As Integer Select Case Index Case 0 = 2 Then Text1.Text = Left(Text1.Text, Len(Text1.Te

24、xt) - 1) Time = 1 Else Text1.Text = 0 Time = 0 End If Case 1 AC 清零 Text1.Text = 0 Text2.Text = 0 Time = 0 sum = 0 Case 2 ( 号 If Time 1 Then Text1.Text = 清空表达式 Time = 1 End If Text1.Text = Text1.Text & ( Case 3 ) 号 If Time = 0 Then Text1.Text = 清空表达式 Time = 1 End If Text1.Text = Text1.Text & ) Case 4

25、 = 号 Expr = Replace(Text1.Text, pi, 3.14159265358979323846264338327950288419716939937510) Expr = Replace(Expr, Ans, Text2.Text) Expr = Replace(Expr, , ) Expr = Replace(Expr, =, ) Where = InStr(Expr, ) If Where 0 Then Cha = Right(Expr, 1) Expr = Left(Expr, Len(Expr) - 2) End If Expr = Replace(Expr, A

26、, A) Expr = Replace(Expr, B, B) Expr = Replace(Expr, D, D) -处理括号不足问题- For i = 1 To Len(Expr) If Mid(Expr, i, 1) = ) Then rbracket = rbracket + 1 ElseIf Mid(Expr, i, 1) = ( Then lbracket = lbracket + 1 End If Next i If lbracket rbracket Then Expr = Expr & String(lbracket - rbracket, ) End If Set Sc =

27、 CreateObject(ScriptControl) Sc.Language = VBScript -处理acos- For j = 1 To Len(Expr) Where = InStr(Expr, acos) If Where 0 Then Where = Where + 3 numr = rightfind(Expr, Where) str = acos & numr On Error GoTo eh1 r = CDbl(Sc.Eval(numr) If Check2.Value = 1 Then r = (Atn(-r / Sqr(-r * r + 1) + 2 * Atn(1) * 45 / Atn(1) ElseIf Check2.Value = 0 Then r = Atn(-r / Sqr(-r * r + 1) + 2 * Atn(1) End If Expr = Replace(Expr, str, CStr(r) i = 0: numl = : n = 0: r = 0: Where = 0: str = Else Exit For End If Next j -

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2