Advertisement
Strahovsky

Extra_Classe

Nov 25th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Program Casas_Baia;
  2. Uses CRT;
  3. Var
  4. Nome : string;
  5. Vet_Nome : array [1..15] of string;
  6. vet_total_venda : array [1..15] of real;
  7. Venda : real;
  8. nome_aux :integer;
  9.  
  10. Begin
  11.  
  12. ClrScr;
  13. Repeat
  14.  
  15. Gotoxy (24,02); Writeln ('Casas Baia Ltda');
  16. Gotoxy (10,04); Writeln ('<< Mapa Diario de endas - Status do Cliente >>');
  17. Gotoxy (12,07); Writeln ('Nome do Cliente......:');
  18. Gotoxy (12,09); Writeln ('Valor Total da Venda.:');
  19. Gotoxy (02,23); Writeln ('Erro:');
  20.  
  21. For Nome_Aux := 1 to 15 Do
  22. Begin
  23. Gotoxy (35,07); Readln (vet_nome[nome_aux]);
  24. Gotoxy (35,09); Readln (Vet_total_Venda[Venda]);
  25.  
  26. End;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement