下面 C++ 代码执行后输出是。
int n = 10; while (n > 0) { n -= 1; if (n % 3 == 0) continue; if (n == 5) break; } cout << n;
0
5
6
7