Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Conditional Statement Exercises: Get a number from the user and print whether it is positive or negative number

Java Conditional Statement: Exercise-1 with Solution

Write a Java program to get a number from the user and print whether it is positive or negative.

Test Data
Input number: 35

Pictorial Presentation:

Java conditional statement Exercises: Program to check  positive or negative number

Sample Solution:

Java Code:

import java.util.Scanner;
public class Exercise1 {

    
  public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input number: ");
        int input = in.nextInt();

        if (input > 0)
        {
            System.out.println("Number is positive");
        }
        else if (input < 0)
        {
            System.out.println("Number is negative");
        }
        else
        {
            System.out.println("Number is zero");
        }
    }
}

Sample Output:

Input number: 35                                                                                              
Number is positive 

Flowchart:

Flowchart: Java Conditional Statement Exercises - Program to check  positive or negative number

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Java Conditional Statement Exercises
Next: Write a Java program to solve quadratic equations (use if, else if and else).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe