Κεφάλαιo 11

Page 1 of 9

Question 1

Πόσες επαναλήψεις θα έχουμε από την εκτέλεση των παρακάτω εντολών

 

arithmos:=1;

 

telos:= false;
while not (telos) do
begin
  arithmos:=arithmos + 2 ;
  if arithmos > 100 then
     telos :=true;
end;
 

51

50

100