Object Pascal - Príkaz inkrementácia: inc

Príkaz inkrementácia je matematická operácia, ktorá slúži pre zväčšenie čísla o jedničku.

inc

Popis


Vstup

Príklady

Object Pascal

Možné požitie príkaz inkrementácia:
i:=0;
while i<10 do inc(i);
x :=0;
while i<20 do
begin
 i:= i+2;
 if i=16 then
 begin
    continue
 end;
 inc(x); 
end;

Object Pascal

Ďalšie kúsky ukážkových kódu:
repeat
  inc(i);
  if i=5 then
    break;
until not i <10;
repeat
  inc(i);
  if i=3 then
    break;
until (i=10);
while  y <= 32 do  
   inc(y);
if  y < 100 then  
   inc(x);
if y < 100 then  
  inc(x);
inc(i);
V iných jazykoch: en hu cz sk