执行以下程序后的输出结果是( )
int n = 12, m = 5, k = 0; for (int i = 1; i <= n; i++) { if (i % m == 0) { continue; } k += 1; } cout << k;
1
5
10
12