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

for i=5:1
  fprintf('o\n');
end
fprintf('x\n');
