首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

求教扬辉三角程序,该怎么处理

2012-01-30 
求教扬辉三角程序求教事例[解决办法]程序员试题Private Sub Form_Click()Dim i, j, c As Integer, strtemp

求教扬辉三角程序
求教事例

[解决办法]
程序员试题
Private Sub Form_Click()
Dim i, j, c As Integer, strtemp As String
Dim a(9) As Integer
a(0) = 0
a(1) = 1
strtemp = Str(a(1)) + Space(3)
CurrentX = (ScaleWidth - TextWidth(strtemp)) / 2
Print strtemp
For j = 2 To 9
a(j) = 1
For c = j - 1 To 2 Step -1
a(c) = a(c) + a(c - 1)
Next
strtemp = " "
For c = 1 To j
strtemp = strtemp & Str(a(c)) & Space(5 - Len(Str(a(c))))
Next
CurrentX = (ScaleWidth - TextWidth(strtemp)) / 2
Print strtemp
Next

End Sub

热点排行