LoginSignup
1
0

More than 1 year has passed since last update.

【PHP基礎④】掛け算

Last updated at Posted at 2022-06-14

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksBasic.html)
整数値を入力させ、その入力値を3倍した計算結果を表示するプログラムを作成しなさい。

コード

$a = intval(fgets(STDIN));
echo $a * 3;

↓ 入力フォームに「30」と入力

結果

90

☆算術演算子
足し算 → a + b
引き算 → a - b
掛け算 → a * b
割り算 → a / b
割り算の余り → a % b

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