Operator Equality

Run Settings
LanguageJava
Language Version
Run Command
class Main { public static void main(String[] args) { int value = 5; int anotherValue = 4; boolean result; result = value == anotherValue; System.out.println("Hasil value == anotherValue' adalah" + result); System.out.println(); System.out.println("Tidak sama dengan.."); result = value != anotherValue; System.out.println("Hasil 'value != anotherValue' adalah" + result); System.out.println(); System.out.println("lebih besar dari.."); result = value > anotherValue; System.out.println("Hasil 'value > anotherValue' adalah"+ result); System.out.println(); System.out.println("sama atau lebih dari.."); result = value >= anotherValue; System.out.println("Hasil 'value >= anotherValue' adalah" + result); System.out.println(); System.out.println("Kurang dari.."); result = value < anotherValue; System.out.println("Hasil 'value < anotherValue' adalah" + result); System.out.println(); System.out.println("Sama atau kurang dari dengan.."); result = value <= anotherValue; System.out.println("Hasil 'value <= anotherValue' adalah" + result); System.out.println(); } }
Editor Settings
Theme
Key bindings
Full width
Lines