문제/Linux

231206 Linux 문제 ⓓ 누적합

잇꼬 2023. 12. 6. 18:14
728x90
반응형
SMALL

[문제] 1부터 10까지의 누적합

----------------------------------------------
#!/bin/bash

i=1
hap=0
while [ $i -le 10 ]
do
hap=`expr $hap + $i`
i=`expr $i + 1`
done
echo "1부터 10까지의 합 : $hap"

----------------------------------------------
[user1@centos script]$ sh while_hap.sh

1부터 10까지의 합 : 55

728x90
반응형
LIST