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