用三种循环语句分别编写程序显示1~100的平方值 在线等急
展开全部
1
for i=1 to 100
print i^2;
if i mod 10 =0 then print
next
2
i=1
while i<=100
print i^2;
if i mod 10 = 0 then print
i=i+1
wend
3
i=1
do whlie i<=100
print i^2;
if i mod 10 = 0 then print
i=i+1
loop
for i=1 to 100
print i^2;
if i mod 10 =0 then print
next
2
i=1
while i<=100
print i^2;
if i mod 10 = 0 then print
i=i+1
wend
3
i=1
do whlie i<=100
print i^2;
if i mod 10 = 0 then print
i=i+1
loop
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询