⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 100 even numbers.frm

📁 codding for pszone one can use it at playstation zones
💻 FRM
字号:
VERSION 5.00
Begin VB.Form EVEN 
   Caption         =   "EVEN NUMBERS"
   ClientHeight    =   4590
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   7920
   LinkTopic       =   "Form3"
   ScaleHeight     =   4590
   ScaleWidth      =   7920
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Command4 
      Caption         =   "FIRST 100 EVEN NUMBER"
      Height          =   855
      Left            =   1080
      TabIndex        =   0
      Top             =   600
      Width           =   1935
   End
End
Attribute VB_Name = "EVEN"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Cls
X = 6
A = 1
Do While A <= X
Print A * X
Loop
End Sub

Private Sub Command2_Click()
Cls
X = 5
A = 1
Do While A <= X
Print "5" & " " & "*" & A&; "=" & A * X
Loop
End Sub

Private Sub Command4_Click()
Cls
A = 1
Do While A <= 200
If A Mod 2 = 0 Then
Print A
End If
A = A + 1
Loop
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -