Skip to content

Instantly share code, notes, and snippets.

@ivanjx
Created September 24, 2019 12:02
Show Gist options
  • Save ivanjx/23894d329a7f43119795d923107cf7cb to your computer and use it in GitHub Desktop.
Save ivanjx/23894d329a7f43119795d923107cf7cb to your computer and use it in GitHub Desktop.
// Deklarasi variable.
int a = 1;
int b = 2;
// Tes.
System.out.println("a == b bernilai " + (a == b));
System.out.println("a != b bernilai " + (a != b));
System.out.println("a > b bernilai " + (a > b));
System.out.println("a < b bernilai " + (a < b));
System.out.println("a >= b bernilai " + (a >= b));
System.out.println("a <= b bernilai " + (a <= b));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment