以下程序段输出的结果为?
int count = 0; for(int i = 1; i <= 3; i++) { for(int j = 1; j <= 2; j++) { count++; } } cout << count;
5
6
9
12