下面的C++代码执行后将输出+#+#3#。
int i; for (i = 0; i < 3; i++){ if (i == 2) continue; printf("+#"); } cout << i << '#';
正确
错误