📄 for_next3.frm
字号:
VERSION 5.00
Begin VB.Form For_Next3
Caption = "九九乘法表"
ClientHeight = 3075
ClientLeft = 60
ClientTop = 345
ClientWidth = 7440
LinkTopic = "Form1"
ScaleHeight = 3075
ScaleWidth = 7440
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "显示九九乘法表"
Height = 375
Left = 2160
TabIndex = 1
Top = 2640
Width = 2895
End
Begin VB.PictureBox Picture1
Height = 2295
Left = 120
ScaleHeight = 2235
ScaleWidth = 6795
TabIndex = 0
Top = 120
Width = 6855
End
End
Attribute VB_Name = "For_Next3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim i As Integer, j As Integer
Dim expss As String
For i = 1 To 9
For j = 1 To i
expss = i & "×" & j & "=" & i * j
Picture1.Print Tab((j - 1) * 10 + 1); expss;
Next j
Picture1.Print
Next i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -