LoginSignup
1
0

More than 1 year has passed since last update.

【PHP初級㊴】配列応用5~複数変数のループ~

Posted at

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksPrimary.html)

{3, 7, 0, 8, 4, 1, 9, 6, 5, 2}で初期化される大きさ10の整数型配列を宣言し、最初は参照する要素番号を0とする。この参照する要素番号の配列要素の値から次の要素番号の配列要素の値を引いた値を表示し、参照する要素番号を1増やす。この手順を9回繰り返すプログラムを作成せよ。

コード

$a = [3,7,0,8,4,1,9,6,5,2];
for($i = 1,$k = 0; $i <= 9; $i++,$k++){
    echo $a[$k]-$a[$k+1],PHP_EOL;
}

結果

-4
7
-8
4
3
-8
3
1
3

★問題㊳と同様に、複数の変数を変化させるfor文を用いる。

1
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
1
0