Advertisement
paulogp

Numero de ocorrencias

Aug 7th, 2011
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.73 KB | None | 0 0
  1. { paulogp }
  2. Program Peda_07 (Input, Output);
  3.  
  4. Uses
  5.     WinCrt;  
  6.  
  7. Var
  8.     Numero, Num_Especial, Contador: Integer;
  9.     Fim: Char;
  10.  
  11. Begin
  12.     Repeat
  13.         ClrScr;
  14.         WriteLn('Programa: Numero de ocorrencias.');
  15.         WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
  16.         WriteLn;
  17.         {Leitura de dados}
  18.         Write('Numero a identificar (<>0): ');
  19.         ReadLn(Num_Especial);
  20.         Contador:= 0;
  21.         Repeat
  22.             WriteLn;
  23.             Write('Escreva um numero (0 termina): ');
  24.             ReadLn(Numero);
  25.             If Numero = Num_Especial then Contador:= Contador + 1;
  26.         Until Numero = 0;
  27.         WriteLn;
  28.         WriteLn('O ', Num_Especial, ' ocorreu ', Contador,' vez(es).');
  29.         WriteLn;
  30.         WriteLn;
  31.         Write('Repetir programa (S/N)? ');
  32.         Fim:=ReadKey;
  33.     Until UpCase(Fim)='N';
  34.     DoneWinCrt;
  35. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement