igorich1376

While5

Jan 27th, 2026
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.18 KB | None | 0 0
  1. ## //PT4 while5
  2. var n := ReadReal('Ввод:');
  3. var cnt := 0;
  4. while n >= 2 do
  5.   begin
  6.     n /= 2;
  7.     Println(n);
  8.     cnt += 1;
  9.   end;
  10. Println('счетчик к=:',cnt)
Advertisement
Add Comment
Please, Sign In to add comment