Level 1 & 2 More Programs

This commit is contained in:
2021-06-07 10:35:48 +05:30
parent 688319db00
commit f56d525b45
9 changed files with 204 additions and 3 deletions

19
OddEvenNumberOutput.java Normal file
View File

@@ -0,0 +1,19 @@
// Write a Java program to accept a number and check the number is even or not.
// Prints 1 if the number is even or 0 if the number is odd.
import java.util.Scanner;
public class OddEvenNumberOutput {
public static void main(String[] args) {
int num;
System.out.println("Enter an Integer:");
Scanner input = new Scanner(System.in);
num = input.nextInt();
if (num % 2 == 0) {
System.out.println("1 - Even");
}
else {
System.out.println("0 - Odd");
}
}
}