第30065题 单选题
以下C++代码运行后的输出结果是?
#include <iostream>
using namespace std;
int main() {
    int a = 3, b = 5, c = 0;
    if (a > 2 || b < 4) {
        c += a;
    } else if (a < 3 && b > 4) {
        c += b;
    } else {
        c += 10;
    }
    cout << c << endl;
    return 0;
}
A

3

B

5

C

10

D

8

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