Created
February 6, 2025 18:20
-
-
Save sauljimenez24/59ec688bd29f319ca94fb66c865b4563 to your computer and use it in GitHub Desktop.
Funcion saludar() mas función suma()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Funciones basicas que no devuelva el valor | |
// pero ejecuta las instrucciones entre llaves | |
void saludar() { | |
print("Buenos dias "); | |
} | |
void suma() { | |
int n1 = 2; | |
int n2 = 5; | |
int s = n1 + n2; | |
print("La suma de $n1 + $n2 es = $s"); | |
} | |
void main() { | |
print(" saul Jimenez 22308051281222"); | |
// llamr a la funcion saludar() | |
saludar(); | |
// Llama a la funcion suma | |
suma(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Función suma()
![image](https://private-user-images.githubusercontent.com/179508454/410588763-f6f9ad63-6dc8-4f61-95ba-1fc42175f349.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzMTQyMzUsIm5iZiI6MTczOTMxMzkzNSwicGF0aCI6Ii8xNzk1MDg0NTQvNDEwNTg4NzYzLWY2ZjlhZDYzLTZkYzgtNGY2MS05NWJhLTFmYzQyMTc1ZjM0OS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjExJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMVQyMjQ1MzVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT01N2JlN2M2M2M0NTE2ZjUzZmY4NGQzNTU2YjE4OGRlMTMzNTM1NjgxMTMxZDE3NDg1YWNiOTI5ZDZkMGE4M2YzJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9._4okJA0nmvnuoRRo707UnEYKcOrp6n3ytXKUd-P5NGc)