0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

1〜100の和を表示させる 〜Linux シェルスクリプト〜

Last updated at Posted at 2021-03-14

初めましてshoです。

シェルスクリプトの学習メモです。

内容「1〜100の和を表示させる」

基礎中な基礎ですね。

(※学習記録やメモ書き目的で始めました。ほぼ初学者レベルなので理解が浅いところや誤りがあるかと思いますがよろしくお願いします。またアドバイス等コメントいただけるとすっごく嬉しいです。早く先輩方のお力になれるよう精進します。)
#スクリプト


#!/bin/sh

result=0

for (( i = 1; i <= 100; i++ )){
  (( result += i ))
}
echo "$result"

#実行結果

5050

#ちなみに

echo "$result"の位置を{ }内に入れると(( result += i )) の処理結果がその都度表示される


#!/bin/sh

result=0

for (( i = 1; i <= 100; i++ )){
  (( result += i ))
echo "$result"
}

#実行結果


1
3
6
10
・
・
・
(省略)
・
・
・
4753
4950
5050

以上!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?