LoginSignup
1
0

More than 1 year has passed since last update.

【PHP初級㊱】配列応用2

Posted at

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

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

コード

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

↓ 
「4
 8」 と入力

結果

20
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