Home Java Beginners Comparing Two Numbers



Comparing Two Numbers
Posted on: June 1, 2007 at 12:00 AM
This is a very simple example of Java that teaches you the method of comparing two numbers and finding out the greater one.

Comparing Two Numbers

     

This is a very simple example of Java that teaches you the method of comparing two numbers and finding out the greater one. First of all, name a class "Comparing" and take two numbers in this class. Here we have taken a=24 and b=25, now we have to find out whether a=b, a>b or b>a. To find out this apply if and else condition one by one. Now apply the condition "if (a=b)", if this satisfies then type that both are equal in the system class. If this doesn't satisfy, then check whether a>b by applying the "else if" condition and type the message "a is greater than b" in the system class. Again this doesn't satisfy then 'else' condition as shown in the example will show that b is greater than a. 

Now compile and run the program and you will find the desired output. If you are getting any error then check the whole program thoroughly and surely you will get correct result. By compiling and running this exact program, you will find that b is greater than a.

class  Comparing{
  public static void main(String[] args) {
  int a=24, b=25;
  if (a == b){
  System.out.println("Both are equal");
  }
  else if(a>b){
  System.out.println("a is greater than b");
  }
  else{
  System.out.println("b is greater than a");
  }
  }
}

Download this example:

Related Tags for Comparing Two Numbers:
ccomclassiofindtypesystemnumbersnumbernamethismessageappcheckifconditionietoboteitlspefirstapplyinnoasmoutparsagecomparingclesemallagemeppequaldosyssssaessatplykisirhallgreeaandarsatwssriringthcondavstatiaphatfinpariplndonomo


More Tutorials from this section

Ask Questions?    Discuss: Comparing Two Numbers   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.