Guest User

Untitled

a guest
Jun 14th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.34 KB | None | 0 0
  1. program costam;
  2. {$APPTYPE CONSOLE}
  3.  
  4. var
  5.     imie : string;
  6.    
  7. begin
  8.     imie := '';
  9.     while imie <> 'wypierdalaj' do
  10.     begin
  11.         writeln('wpisz imie...');
  12.         readln(imie);
  13.        
  14.         if imie = 'Janusz' then
  15.         begin
  16.             writeln('te wszystkie dane');
  17.         end;
  18.         if imie = 'Aleksandra' then
  19.         begin
  20.             writeln('to samo');
  21.         end;
  22.     end;
  23.    
  24.     readln;
  25. end.
Add Comment
Please, Sign In to add comment