删除下⾯C++代码中的continue不影响程序的执⾏效果 。 ( )
for (int i = 0; i < 100; i++){ if (i % 2 == 0){ printf("偶数"); continue; } else printf("奇数"); }
正确
错误