Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(void) {
  3. int m = 0;
  4. while (m < 10) {
  5. m++;
  6. if(m == 5) {
  7. continue;
  8. }
  9. printf("m:%dn",m);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement