1
0

More than 1 year has passed since last update.

【PHP初級㉕】論理演算子5

Last updated at Posted at 2022-07-06

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksPrimary.html)
整数値を入力させ、その値が-10未満ならrange 1、-10以上0未満であればrange 2、0以上であればrange 3、と表示するプログラムを作成しなさい。

コード

$a = intval(fgets(STDIN));
if($a < -10){
    echo 'range 1';
}else if($a >= -10 && $a < 0){
    echo 'range 2';
}else{
    echo 'range 3';
}   

↓「0」と入力

結果

range 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