Check Even or Odd

· unclassifiedUnclassified

Check Even or Odd

javamay contain transcription errors
import java.util.*;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(n % 2 == 0 ? "Even" : "Odd");
}
}
← Check AnagramCheck if Array is Sorted →
Report an issue with this question