Skip to content

Instantly share code, notes, and snippets.

@ali-ledezma
Created February 6, 2025 18:32
Show Gist options
  • Save ali-ledezma/b2dca565b41af9cf2adc54c0653cd9b9 to your computer and use it in GitHub Desktop.
Save ali-ledezma/b2dca565b41af9cf2adc54c0653cd9b9 to your computer and use it in GitHub Desktop.
funcion devuelve un valor return , utiliza parametros de entrada
int resta(int a, int b){
return a-b;
}
void main(){
print("DIEGO LEDEZMA 22308051281229");
int x = 9;
int y = 3;
int r=resta(x,y);
print("la resta de $x - $y es $r");
}
@ali-ledezma
Copy link
Author

salida
image

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