回 帖 发 新 帖 刷新版面

主题:rrrr

打印如下图形
1  50(分(第一个做对)        1 0 0 0 0
                               2 1 0 0 0
                               2 2 1 0 0 
                               2 2 2 1 0
                               2 2 2 2 1  
2  30(分)                        1
                                 3 3 3
                               1 1 1 1 1
                               3 3 3 3 3
                                 1 1 1
                                   3

回复列表 (共2个回复)

沙发


cls
for i=1 to 5
  for j=1 to 5
   if i>j then 
        a(i,j)=2
        else
        if i<j then a(i,j)=0 else a(i,j)=1
    end if
next j
next i
for i=1 to 5
for j=1 to 5
? a(i,j);
next j
?
next i
end

板凳

2
for i=1 to 3
    for j=1 to 5 step 2
        if 3 mod i =0 then 
                      ? "1";
                      else
                      ? "3";
         end if
    next j
    ?
next i
for k=3 to 1 step -1
    for l=5 to 1 step -2
        if 3 mod i=0 then 
                     ? "3";
                     else
                     ? "1";
        end if
     next j
     ?
next i
end 

我来回复

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