回 帖 发 新 帖 刷新版面

主题:[活动]016565

输出
                        *
                       ***
                      *****
                     *******
                      *****
                       ***
                        *

回复列表 (共2个回复)

沙发

cls
for i=1 to 4
 print tab(21-i);
for j=1 to 2*i-1
 print "*";
next j
next i
for i=3 to 1 step -1
o=23
print tab(o-i)
o=o-2
for j=1 to 2*i-1 
print "*";
next j
next i
end

板凳

CLS
n = 7
n = n \ 2 + 1
FOR i = 1 TO n
  PRINT SPC(n - i);
    FOR j = 1 TO i * 2 - 1
      PRINT "*";
    NEXT j
  PRINT
NEXT i
FOR i = n - 1 TO 1 STEP -1
  PRINT SPC(n - i);
    FOR j = 1 TO i * 2 - 1
      PRINT "*";
    NEXT j
  PRINT
NEXT i
END

我来回复

您尚未登录,请登录后再回复。点此登录或注册