用VB编写星号组成的倒三角形(双重循环)
问题描述:
用VB编写星号组成的倒三角形(双重循环)
****
***
**
*
答
for i=7 to 1
str=""
forj=1 to j
str=space(7-i) & str & "*"
nxet j
form1.print str
next i