Advertisement
Guest User

final11

a guest
Nov 11th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. Proceso final11
  3.  
  4. Inicio
  5.  
  6. Definir result, i, n como entero
  7.  
  8. n = 11
  9.  
  10. result = 1
  11.  
  12. i =1
  13.  
  14. Mientras (i <= n)
  15.  
  16. result = result * i
  17.  
  18. i = i + 1
  19.  
  20. Fin Mientras
  21.  
  22. Mostrar result
  23.  
  24. Fin
  25.  
  26. Fin Proceso
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement