Skip to content

Instantly share code, notes, and snippets.

@Abril-Cisneroos
Created February 6, 2025 18:33
Show Gist options
  • Save Abril-Cisneroos/014b56fe09e6883139b2c8641b3ed1d4 to your computer and use it in GitHub Desktop.
Save Abril-Cisneroos/014b56fe09e6883139b2c8641b3ed1d4 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 ("Abril Cisneros 22308051281162");
int x = 9;
int y = 3;
int r=resta(x,y);
print("la resta de $x - $y es $r");
}
@Abril-Cisneroos
Copy link
Author

Salida
image

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