Skip to content

Instantly share code, notes, and snippets.

@ReyesRamirez
Created February 6, 2025 18:33
Show Gist options
  • Save ReyesRamirez/38ce3e1a8b638f6f3ae9299bf855dd58 to your computer and use it in GitHub Desktop.
Save ReyesRamirez/38ce3e1a8b638f6f3ae9299bf855dd58 to your computer and use it in GitHub Desktop.
Funcion que devuelve un valor return, utiliza parametros de entrada
// Funciones basicas que devuelven valor,
// y ejecuta las instrucciones entre llaves
int resta(int a, int b){
return a-b;
}
void main() {
print(" Reyes Ramirez 22308051201289");
int x = 9;
int y = 3;
int r= resta(x,y);
print("La resta de $x - $y es $r");
}
@ReyesRamirez
Copy link
Author

Salida
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment