LoginSignup
1
0

More than 1 year has passed since last update.

【PHP初級㉟】配列応用1

Posted at

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

{3, 7, 0, 8, 4, 1, 9, 6, 5, 2}で初期化される大きさ10の整数型配列を宣言し、整数値を入力させ、要素番号が入力値である配列要素の値を表示するプログラムを作成せよ。入力値が配列の要素の範囲外であるかどうかのチェックは省略してよい。

コード

$a = [3,7,0,8,4,1,9,6,5,2];
$m = intval(fgets(STDIN));
echo $a[$m];

↓「0」と入力

結果

3
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