Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 3, 2019 04:54
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/0cb06e559422b83c75600d352fe5f26b to your computer and use it in GitHub Desktop.
Save parzibyte/0cb06e559422b83c75600d352fe5f26b to your computer and use it in GitHub Desktop.
int esMultiplo(int numero, int multiplo) {
if (numero % multiplo == 0) {
return 1;
} else {
return 0;
}
// También se podría hacer un:
// return numero % multiplo == 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment