Three loop statement types:
I. while-loop while( boolean expression ) { body } II. for-loop for( initializer ; boolean expression ; update) { body } III. do-while do { body } while(boolean expression);