以下代码用于模拟细菌的繁殖。执行后,变量 count 的值是?
int count = 0; for(int i = 0; i < 3; i++) { for(int j = 0; j < 2; j++) { count++; } }
5
6
9
12