?? form2.frm
字號:
VERSION 5.00
Begin VB.Form Form2
Caption = "Form2"
ClientHeight = 6765
ClientLeft = 60
ClientTop = 345
ClientWidth = 5475
LinkTopic = "Form2"
ScaleHeight = 6765
ScaleWidth = 5475
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
Print "計算所耗時間為: "; tm; "秒"
Print
Print "Chebyshev多項式系數有:"; n; "項"
Print "具體系數如下:"
For i = 0 To n
Print i; ". "; c(i)
Next
Print
Print "Chebyshev多項式計算在x0點的結果為:"; p
Print
Print "真實值為:f("; x0; ")="; f(x0)
Print "相對精度為:"
Print e
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -