Home

16.12.11

Even or Odd? (Java)

http://www.roseindia.net/java/beginners/IfElse.shtml

import java.io.*;

public class IfElse{
  public static void main(String[] args) throws IOException{
  try{
  int n;
  BufferedReader in = 
  new 
BufferedReader(new InputStreamReader(System.in));
  n = Integer.parseInt(in.readLine());
  if (n % == 0)
  {
  System.out.println("Given number is Even.");
  }
  else
  {
  System.out.println("Given number is Odd.");
  }
  }
  catch(NumberFormatException e){
  System.out.println(e.getMessage()
+ " is not a numeric value.");
  System.exit(0);
  }
  }
}

No comments:

Related Posts Plugin for WordPress, Blogger...