package com.java.myapp;
public class MyClass {
public static void main(String[] args) {
int i = 2;
if (i > 0) //Outer if
{
if ( i <= 5 ) // Inner if
System.out.println( "i is between 0 and 5" ) ;
}
if (i > 0 && i <= 5)
{
System.out.println( "i is between 0 and 5" ) ;
}
}
}