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

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