% while5.m   P.Conrad for CISC106, 07F
% practice problem to test knowledge of while loops
% What is the output?

i = 32;
while (i>=1)
  fprintf('o');
  i = i / 2;
end
fprintf('x\n');
