摘要: 杨乾成 一、1到1000的平方和 这道题比较简单,就不加赘述了。代码如下: 1 #!/bin/bash 2 i=1 3 count=0 4 while [ $i -le 1000 ] 5 do 6 let count+=i*i 7 let i++ 8 done 9 echo "1到1000的平方和是 阅读全文
posted @ 2019-12-03 23:20 一只放姑娘的羊 阅读(489) 评论(0) 推荐(0) 编辑