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 mi_algoritmo | |
| Definir x Como Real | |
| x = (2 + 3)/4 | |
| Escribir "El resultado ", x | |
| 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 mi_algoritmo | |
| Definir x Como Real | |
| x = (12 + 6) / 2 + 3 | |
| Escribir "El resultado: ", x | |
| 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 mi_algoritmo | |
| Definir x Como Entero | |
| x = (2 + 3) * 6 | |
| Escribir "El resultado: ", x | |
| 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 mi_algoritmo | |
| Definir x Como Real | |
| x = (2 + 3)/4 | |
| Escribir "el resultado es: ", x | |
| 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 ejerciciod | |
| Definir c, r, t, x Como Real | |
| c = 2000 | |
| r = 5 | |
| t = 2 | |
| x = (c * r * t) / 100 | |
| Escribir "El resultado es: ", x |
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 |
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 ejercicioe | |
| Definir c, b, x Como Entero | |
| c <- 3 | |
| b <- 2 | |
| x = c^b + c*b | |
| Escribir "El resultado es: ", x | |
| FinAlgoritmo |
NewerOlder