LoginSignup
0
0

More than 1 year has passed since last update.

【Java基礎】if構文-4.複数の条件分岐

Posted at

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksBasic.html)
整数値を入力させ、値が正であればpositive、負であればnegative、0であればzeroと表示するプログラムを作成しなさい。

コード

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        if(t > 0){
            System.out.println("positive");
        }else if(t < 0){
            System.out.println("negative");
        }else if(t == 0){
            System.out.println("zero");
        }
    }
}

↓「-8」と入力

結果

negative
0
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
0
0