• + 0 comments

    The code is showing error that main method not found.

    import java.util.*;

    class Main { public static void main(String args[]) { int n; Scanner sc=new Scanner(System.in); n=sc.nextInt(); if(n>=1 && n<=100) { if(n%2==0 && n>=2 && n<=5) System.out.println("Not wierd"); else if (n%2==0 && n>=6 && n<=20) System.out.println("Wierd"); else if(n%2==0 && n>20) System.out.println(" Not Wierd"); else System.out.println("Wierd"); }

    else System.out.println(" Enter number in the range of 1 to 100"); } }