Facebook
From José, 3 Years ago, written in Plain Text.
This paste is a reply to Re: Re: Re: Re: Untitled from José - view diff
Embed
Download Paste or View Raw
Hits: 135
  1. Início
  2.         Operação String
  3.         num1, num2 Inteiro
  4.         Escrever “introduza valor a calcular”
  5.         Ler Operação
  6.         Caso Operação:
  7.  
  8.                 Seja “+”
  9.                         Ler “num1 + num2”
  10. Escrever “o valor real da operação é”
  11. Escrever
  12.  
  13.                 Seja “-”
  14.                         Ler “num1 - num2”
  15. Escrever “o valor real da operação é”
  16. Escrever
  17.                 Seja “x”
  18.                         Ler “num1 x num2”
  19. Escrever “o valor real da operação é”
  20. Escrever
  21.  
  22.                 Seja “/”
  23.                         Ler “num1/num2”
  24.                         Escrever “o valor real da operação é”
  25.                         Escrever
  26.  
  27.                 Outros valores:
  28.                         Escrever: “sem resultados”
  29.                         Escrever
  30.         FIMCASO
  31. Fim
  32.