fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. class IfExample
  8. {
  9. public static void main(String[] args)
  10. {
  11. int var1=0;
  12. if (var1==0)
  13. {
  14. System.out.println("Inside If Condition");
  15. }
  16.  
  17. }
  18. }
  19.  
Success #stdin #stdout 0.08s 48748KB
stdin
Standard input is empty
stdout
Inside If Condition