Skip to content

Instantly share code, notes, and snippets.

@ccalmendra
Last active October 24, 2022 23:41
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 ccalmendra/500652ddcc7611d1510fcb7ddd8b8ca4 to your computer and use it in GitHub Desktop.
Save ccalmendra/500652ddcc7611d1510fcb7ddd8b8ca4 to your computer and use it in GitHub Desktop.
public String parOuImpar(int i) {
if (i % 2 == 0) {
return "par";
}
else {
return "impar";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment