以下程序段执行之后的结果为( )。
int a = 0; for (;; a++) { if (a != 12) a += 2; else continue; if (a % 2 != 0) break; } cout << a;
12
3
5
13