第28610题 单选题
以下C++代码运行后,count变量的最终值是多少?

以下是题目对应的C++代码:

#include <iostream>
using namespace std;
int main() {
    int count = 0;
    for(int i = 1; i <= 3; i++) {
        for(int j = 0; j < 2; j++) {
            count++;
        }
    }
    cout << count << endl;
    return 0;
}
A

5

B

6

C

3

D

2

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析