题目 题型:简答题 难度:★★★★★

使用for和while语句编写一个Shell程序,实现1-9的平方值。分别保存文件名为forsh,whilesh。(10

使用for和while语句编写一个Shell程序,实现1-9的平方值。分别保存文件名为forsh,whilesh。(10分)

#!/bin/bash

#this is a example for for 1'

for num in 1 2 3 4 5 6 7 8 9 1'

do

echo $num的平方: 1'

espr $ num\* $num 1'

# { echo $num的平方:;expr $num\* $num; } 1'

done (5')

#!/bin/bash

#this is a example for while 1'

# num=1

while [ $num -le 9 ] 1'

do

echo $num的平方 1'

expr $num \* $num 1'

# { echo $num的平方:;expr $num\* $num; } 1'

expr $num=$num+1

done (5')

该题目是简答题,请认证思考题目并且简要回答!

Logo

更多推荐