Skip to content

Instantly share code, notes, and snippets.

@renatosousafilho
Created February 21, 2014 13:33
Show Gist options
  • Save renatosousafilho/9134272 to your computer and use it in GitHub Desktop.
Save renatosousafilho/9134272 to your computer and use it in GitHub Desktop.
class VerificaNumeroPar {
int numero = "8"
if (numero%2==0) {
System.out.println("Nuḿero par");
} else {
System.out.println("Número impar");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment