Java程序查找给定数字是正数还是负数

使用Scanner类的方法从用户那里读取一个数字。检查给定数字是大于,小于还是等于0。如果大于,则给定数字为正,如果较小的给定数字为负。其他给定的数字既不是正数也不是负数。

示例

import java.util.Scanner;

public class PositiveOrNegative {

   public static void main(String args[]){

      int num;

      System.out.println("Enter a number ::");

      Scanner sc = new Scanner(System.in);

      num = sc.nextInt();

      if (num > 0){

         System.out.println("Given number is a positive integer");

      } else if(num < 0){

         System.out.println("Given number is a negative integer");

      } else {

         System.out.println("Given number is neither positive nor negative integer");

      }

   }

}

输出1

Enter a number ::

55

Given number is a positive integer

输出2

Enter a number ::

-88

Given number is a negative integer

以上是 Java程序查找给定数字是正数还是负数 的全部内容, 来源链接: utcz.com/z/357261.html

回到顶部