设计一个网页 用子过程来实现输出如下图形:
*
***
*****
*******
For i=0 to 4
document.write String("*", i*2+1) + "<br/>"
Next