有如下程序段: int total = 0; for ( int i = 0; i < 4; i++ ) { if ( i == 1) continue; if ( i == 2) break; total += i; } 则执行完该程序段后total的值为:
3
0
6
1