//While statement while ( condition) { statements; //body of loop } // do-while statement do{ . statements // body of loop. . } while( Condition );