Boolean Operation in Java

Introduction
  • In this blog, I am going to explain the program for Boolean Operations in Java.
Software Requirements
  • Java, Notepad
Program
  1. import java.io.*;  
  2.   
  3. public class booleanOperation{  
  4.     public static void main(String[] args) throws Exception{  
  5.         try{  
  6.             int a;  
  7.             int b;  
  8.             String str;  
  9.             BufferedReader in = new BufferedReader(new InputStreamReader(System.in));  
  10.             a = Integer.parseInt(in.readLine());  
  11.             b = Integer.parseInt(in.readLine());  
  12.             str = in.readLine();  
  13.             String as = new String(str);  
  14.             System.out.println("a = " + a + "and\nb = " + b);  
  15.             System.out.println(a + " is greater than " + b + " : " + (a > b));  
  16.             System.out.println(a + " is less than " + b + " : " + (a < b));  
  17.             System.out.println(a + " is equal to " + b + " : " + (a == b));  
  18.             System.out.println(a + " is greater or equal to " + b + " : " + (a >= b));  
  19.             System.out.println(a + " is less than or equal to " + b + " : " + (a <= b));  
  20.             System.out.println(a + " is not equal to " + b + " : " + (a != b));  
  21.             System.out.println(a + " is equal to " + b + " : " + (a == b));  
  22.             System.out.println("This condition is : " + (as.equals("Yes")));  
  23.         }  
  24.         catch(IOException e){  
  25.             System.out.println(e.getMessage());  
  26.             System.exit(0);  
  27.         }  
  28.     }  
  29. }
Ebook Download
View all
Learn
View all