-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathisOddorEven.java
More file actions
33 lines (30 loc) · 762 Bytes
/
isOddorEven.java
File metadata and controls
33 lines (30 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import java.util.Scanner;
public class evenOrOdd{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.println("Please enter a non-negative number: ");
int x = in.nextInt();
if (x % 2 == 0)
{
System.out.println("The number is even");
}
else {
System.out.println("The number is odd");
}
}
}
import java.util.Scanner;
public class evenOrOdd{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.println("Please enter a non-negative number: ");
int x = in.nextInt();
if (x % 2 == 0)
{
System.out.println("The number is even");
}
else {
System.out.println("The number is odd");
}
}
}