class evenOdd
{
public static void main(int no)
{
if(no%2==0) // Modulus (dunno how to spell it) find the remainder.. If its an even { //number the thing is 0
System.out.println("Even number");
}
else
{
System.out.println("Not an even number");
}
}
}
Remove the thing after "//" Then it will work.
ReplyDelete