GamerSK

Životnosť

Feb 5th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.47 KB | None | 0 0
  1. program zivotnost;
  2. {$APPTYPE CONSOLE}
  3. uses SysUtils;
  4. var  r,pr,roz,i:byte;
  5. begin
  6.   { TODO -oUser -cConsole Main : Insert code here }
  7.   write('V akom rozsahu chcete hladat?: ');
  8.   readln(roz);
  9.   write('Kolko rokov mal vas posledny predok?: ');
  10.   readln(pr);
  11.   for i:=1 to roz do
  12.     begin
  13.       write('Zadajte vek predka: ');
  14.       readln(r);
  15.     end;
  16.   if r>pr then writeln('Zivotnost sa zvysuje!');
  17.   if r<pr then writeln('Zivotnost sa zmensuje!');
  18.   readln;
  19. end.
Advertisement
Add Comment
Please, Sign In to add comment