Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 2, 2021 19:31
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/8ce9350850b873c055a094892396dcd2 to your computer and use it in GitHub Desktop.
Save parzibyte/8ce9350850b873c055a094892396dcd2 to your computer and use it in GitHub Desktop.
double valorAbsoluto(double numero)
{
if (numero < 0)
{
return numero * -1;
}
return numero;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment