Search This Blog

Wednesday, 15 February 2012

Program Java Even or Odd


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");
            }
        }
    }

1 comment: