Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 15, 2021 20:22
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 parzibyte/2d4329bc1908dcc8e3789944106f767c to your computer and use it in GitHub Desktop.
Save parzibyte/2d4329bc1908dcc8e3789944106f767c to your computer and use it in GitHub Desktop.
int numero = 5;
if((numero & 1) == 0){
System.out.println("Sí es par");
}else{
System.out.println("No es par");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment