Last active
February 6, 2025 18:46
-
-
Save CESARIIN0/1c086638dba70ae79e8f1de3416a4aa9 to your computer and use it in GitHub Desktop.
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
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("Cesar Reyes Vazquez 1294"); | |
//llamar a la funcion saludar} | |
saludar(); | |
//Llama a la funcion suma | |
suma(); | |
} |
Author
CESARIIN0
commented
Feb 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment