Advertisement
Guest User

calculadora

a guest
Jan 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. algarismo_1 = nil
  2. algarismo_2 = nil
  3. resultado = nil
  4. operacao = nil
  5. resto = nil
  6. escolha = nil
  7. function limpar()
  8.  
  9. term.clear()
  10. term.setCursorPos(1, 1)
  11.  
  12. end
  13.  
  14. function menu()
  15. print("                   CALCULADORA\n\n")
  16. print("Escolha a Operacao Desejada\n")
  17. print("Caso Deseje Somar Digite [+]")
  18. print("Caso Deseje Subtrair Digite [-]")
  19. print("Caso Deseje Multiplicar Digite [x] ou [*] ")
  20. print("Caso Deseje Dividir Digite [/] ")
  21.  
  22. escolha = io.read()
  23.  
  24. limpar()
  25.  
  26. end
  27.  
  28. menu()
  29.  
  30. function operacao()
  31.  
  32.  
  33.  
  34. if
  35.  
  36.  
  37.  
  38.  
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement