📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
Caption = "结论"
ClientHeight = 8115
ClientLeft = 2430
ClientTop = 1620
ClientWidth = 10695
LinkTopic = "Form2"
MaxButton = 0 'False
ScaleHeight = 8115
ScaleWidth = 10695
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()
Form1.Hide
Print "计算所耗时间为: "; T; "秒"
Print
Print "迭代向量序列如下:"
For i = 1 To k
Print "x("; i; ")为:";
For j = 1 To w1
Print M(i, j);
Next j
Print
Next i
Print
Print "迭代结果为:"
For i = 1 To w1
Print "x("; i; ")="; x0(i)
Next
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -