用vb如何编写一个程序用*构成一个实心正六边形,就像图中的三角形这种
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
2个回答
展开全部
sub draw(l as integer,optional stp as integer=1)
dim i as integer,j as integer
for i=l to 1 step -stp
print tab(i);
for j =1 to 2*(l-i)+l
print "*";
next j
next i
'
for i=1 to l step stp
print tab(i);
for j=1 to 2*(l-i)+l
print "*";
next j
next i
end sub
'调用
draw 5
draw 10,2
dim i as integer,j as integer
for i=l to 1 step -stp
print tab(i);
for j =1 to 2*(l-i)+l
print "*";
next j
next i
'
for i=1 to l step stp
print tab(i);
for j=1 to 2*(l-i)+l
print "*";
next j
next i
end sub
'调用
draw 5
draw 10,2
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询