well while I was taking a small little break from doing blog posts (which I would not recomend anyone else doing), I was learning about various loops and how to use them in order to accomplish a wider rang of tasks with less code. One of these loops include the for loop. A for loop is statement that outputs something as long as the variable being used does not supercede its limit. What a for loop looks like is
for (x=(int);x(</>/=)(int);x+-(int)){
do something();}
what this does is repeat do something until x has reached its limit. at the end of each loop cycle, x is incremented. if it weren't for the incrementation, the loop would go on forever with out stop.
personally, i love these loops. They, with if statements, replace all other code learned at the beginning of the year. infact, i wish that we were taught this first instead of the step by step procedure.