Last active
June 4, 2026 01:35
-
-
Save Kiuren/ae2b5f5e0f630d3aefd57754a8211fee to your computer and use it in GitHub Desktop.
Creado con PseInt Web
This file contains hidden or 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
| Algoritmo ejerciciod | |
| Definir a, b, c Como Entero | |
| a = 8 | |
| b = 5 | |
| c = 0 | |
| c = c + a | |
| a = a + c - 2 * b | |
| b = b + b | |
| a = c | |
| Escribir "a = ", a | |
| Escribir "b = ", b | |
| Escribir "c = ", c | |
| FinAlgoritmo |
This file contains hidden or 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
| Algoritmo ejercicioa | |
| Definir m, n, x Como Real | |
| m = 6 | |
| n = 2 | |
| x = (m + n) / n | |
| Escribir "El resultado es: ", x | |
| FinAlgoritmo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment