企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 【选择测试】分支的嵌套 对于下面这个程序,请选出给出的所有的选项中的正确选项。 ~~~ #include <iostream> using std::cin; using std::cout; using std::endl; int main() { int year; cin>>year; if (year % 4 != 0) { cout << "No" << endl; } else if (year % 100 != 0) { cout << "Yes" << endl; } else if (year % 400 != 0) { cout << "No" << endl; } else { cout << "Yes" << endl; } return 0; } ~~~ ***** A 当标准输入是 2100 时,输出为 Yes B 当标准输入是 2000 时,输出为 No C 当标准输入是 1992 时,输出为 Yes D 当标准输入是 800 的倍数时,输出为 No E 当标准输入是 2010 时,输出为 No 正确答案:CE