linux通过shell编写一段程序,输出1~10的平方数,使用for和while语句编写一个Shell程序,实现1-9的平方值。分别保存文件名为forsh,whilesh。(10...
题目题型:简答题难度:★★★★★使用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...
·
题目 题型:简答题 难度:★★★★★
使用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')
该题目是简答题,请认证思考题目并且简要回答!
更多推荐
已为社区贡献1条内容
所有评论(0)