% for6.m P.Conrad for CISC106, 07F % practice problem to test knowledge of for loops % What is the output? for i=1:3:9 fprintf('%1.0f\n',i); end