do { StatementToExecute } while ( Expression );
int q = 0; //declare q and initialize it to 0 do { q =q + 10; // add 10 to q } while ( q < 100); // while q is less then 100