Skip to content

Instantly share code, notes, and snippets.

@Eliseo128
Created February 6, 2025 18:33
Show Gist options
  • Save Eliseo128/41d91a8575cc8d2bdeeab505d584ba4b to your computer and use it in GitHub Desktop.
Save Eliseo128/41d91a8575cc8d2bdeeab505d584ba4b to your computer and use it in GitHub Desktop.
Función que devuelve un valor return , utiliza parámetros de entrada
// funciones basicas que devuelva valor,
// y ejecuta las instrucciones entre llaves
int resta(int a, int b){
return a-b;
}
void main() {
print (" Eliseo Nava 20308051280777");
int x = 9;
int y = 3;
int r=resta(x,y);
print("la resta de $x - $y es $r");
}
@Eliseo128
Copy link
Author

Salida

image

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