LoginSignup
1
0

More than 1 year has passed since last update.

【PHP基礎⑩】絶対値の取得

Last updated at Posted at 2022-06-19

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksBasic.html)
整数値を入力させ、その値を絶対値にして表示するプログラムを作成しなさい。
(できれば変数の値を絶対値に変えるようにする)

コード

$a = intval(fgets(STDIN));
echo abs($a);

↓「-8」と入力

結果

8

☆絶対値
 abs()   ← absolute value(絶対値)に由来

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