📄 例5.12 计算父女的年龄.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "例5.12 计算父女的年龄"
ClientHeight = 2310
ClientLeft = 60
ClientTop = 345
ClientWidth = 4605
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 2310
ScaleWidth = 4605
StartUpPosition = 3 '窗口缺省
Begin VB.Label Label1
Alignment = 2 'Center
BackColor = &H00C0E0FF&
BorderStyle = 1 'Fixed Single
Caption = "单击窗体计算"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000040&
Height = 495
Left = 1395
TabIndex = 0
Top = 1560
Width = 1815
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim age As Integer
Cls
age = 12
While age * 2 <> age + 30
age = age + 1
Wend
Print "经过"; age - 12; " 年"
Print "小红父女的年龄分别是:"; age + 30; "和"; age
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -