Relation Operators

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

class rel

{
public static void main(String s[])
{
int d=5,a=Integer.parseInt(s[0]);
if(a==d)
{
System.out.println("We used equalto operator ==");
}
if(a>d)
{
System.out.println("We used greaterthan operator >");
}
if(a<d)
{
System.out.println("We used lessthan operator <");
}
if(a!=d)
{
System.out.println("We used not equalto != operator");
}
}
}

You might also like