Jul 17, 2014

If Else In Java With ( == , != , < , > , <= , >= Opearators)

In This Example I'm Trying To Explain How If Else Statements Work In Java.
You can Check many Logical Operators With If Else Statements.
There Are Mainly 6 Types.

1. Equal                                       ==
2. Not Equal                                != 
3. Less Than                                <
4. Greater Than                          
5. Less Than Or Equal               <=
6. Greater Than Or Equal         >=

Following Example Shows Use Of Operators With if Else Statements

class EasyCodeStuff {
   public static void main(String args[]){
     
      int No1 = 10;

      //Equal Opeartion
      if (No1 == 10){
         System.out.println("No1 is Equal To 10");
      }else{
         System.out.print("No1 is Not Equal To 10");
      }
      
      //Not Equal Opeartion
      if (No1 != 10){
         System.out.println("No1 is Not Equal To 10");
      }else{
         System.out.println("No1 is Equal To 10");
      }
       
      //Less Than Opeartion
      if (No1 < 10){
         System.out.println("No1 is Less Than 10");
      }else{
         System.out.println("No1 is Not Less Than 10");
      }

      //Greater Than Opeartion
      if (No1 > 10){
         System.out.println("No1 is Greater Than 10");
      }else{
         System.out.println("No1 is Not Greater Than 10");
      }

      //Less Than Or Equal Opeartion
      if (No1 <= 10){
         System.out.println("No1 is Less Than Or Equal To 10");
      }else{
         System.out.println("No1 is Not Less Than 10");
      }

      //Greater Than Or Equal Opeartion
      if (No1 >= 10){
         System.out.println("No1 is Greater Than Or Equal To 10");
      }else{
         System.out.println("No1 is Not Greater Than 10");
      }
   }
}   



No comments:

JWT Token Decode Using Jquery

When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...