Skip to content

Instantly share code, notes, and snippets.

@uskey512
Last active October 28, 2020 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uskey512/c20ed4d90c792a770ca73a3bd8e2a6fa to your computer and use it in GitHub Desktop.
Save uskey512/c20ed4d90c792a770ca73a3bd8e2a6fa to your computer and use it in GitHub Desktop.
class IntCompareTest {
public static void main(String[] args) {
int a = 100;
int b = 100;
System.out.println(a == b);
a = 200;
b = 200;
System.out.println(a == b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment