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

i = 3;
while (i>=0)
  fprintf('o');
  i = i - 1;
end
fprintf('x\n');
