package com.sudhirtheindian2.java123;
public class relational_operator {
public static void main(String[] args) {
// How to use relational operator in java
// 1 ==
// 2!=
// 3>
// 4<
// 5<=
// 6>=
int a =5,b=10;
System.out.println(a==b); //5==10
System.out.println(a!=b); //5!=10
System.out.println(a>b); //5>10
System.out.println(a<b); //5<10
System.out.println(a<=b); //5<=10
System.out.println(a>=b); //5>=10
}
}
Computer Storage Units Converter Computer Storage Units Converter From: Bytes Kilobytes Megabytes Gigabytes Terabytes Value: To: Bytes Kilobytes Megabytes Gigabytes Terabytes Convert
टिप्पणियाँ
एक टिप्पणी भेजें