Java conditions
👁 192
statistics
by Dr. Osama M. Khaled
—
last modified
2022-07-19T04:23:42+00:00
The quiz presents a Java code that takes an input and prints an output based on some conditions. Take the quiz and test your understanding about conditional statements
Questions #: 5
Time:
Pass Score: 80.0%
1import java.util.Scanner;
2 public class Exe_Java_Condition {
3 public static void main(String[] args)
{
4 Scanner in = new Scanner(System.in);
5 System.out.print("Input number: ");
6 int input = in.nextInt();
7 if (input > 0)
{
8 System.out.println("Positive Number");
9 }
else if (input < 0)
{
10 System.out.println("Negative Number");
11}
else
{
12 System.out.println("Zero");
13 }
14 }
15 }
Views:
Trials:
Avg score: