```package program_basics;
public class Condition_statement {
public static void main(String[] args) {
// TODO Auto-generated method stub
//-------------------------------------------------
//if only
/*
int i=25;
int j=50;
if (i<j)
{
System.out.println("j is greater");
}
*/
//-----------------------------------------------
//if else only
/*
int i=25;
int j=50;
if (i>j)
{
System.out.println("j is greater");
}
else
{
System.out.println("j is lesser");
}
*/
//----------------------------------------------------
//else if only
/*
int i=35;
int j=50;
if (i>j)
{
System.out.println("i is greater");
}
else if(j<i)
{
System.out.println("j is greater");
}
else
{
System.out.println("this is false");
}
*/
}
}
Top comments (0)