删除下面C++代码中的continue不影响程序的执行效果。( )
1 for (int i = 0; i < 100; i++){ 2 if (i % 2 == 0){ 3 printf("偶数"); 4 continue; 5 } 6 else 7 printf("奇数"); 8 }