【PowerShell】for ステートメント 2017年4月13日 (木) 21:19 in PowerShell for ステートメントの書き方です。 構文for (初期化;条件文;インクリメント){ [条件文が真のあいだ実行される処理] } 例$sum = 0 for ($i = 1; $i -le 10; $i++){ $sum = $sum + $i } スポンサーリンク https://hosopro.blogspot.com/2017/04/powershell-for-statement.html 【PowerShell】for ステートメント Related Posts