GamerSK

Rastie číslo?

Feb 28th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.42 KB | None | 0 0
  1. program rastucecisla;
  2. {$APPTYPE CONSOLE}
  3. uses SysUtils;
  4. var c,p:byte;
  5.     r:boolean;
  6. begin
  7.   { TODO -oUser -cConsole Main : Insert code here }
  8.   r:=true;
  9.   p:=1;
  10.   repeat
  11.     write('Zadajte cislo: ');
  12.     readln(c);
  13.     if (c<p) and (c <> 0) then r:=false
  14.       else r:=true;
  15.     p:=c;
  16.   until c=0;
  17.   if r=false then writeln('Postupnost nieje rastuca!')
  18.     else writeln('Postupnost je rastuca!');
  19.   readln;
  20. end.
Advertisement
Add Comment
Please, Sign In to add comment