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

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