测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A33162. 下面程序的输出为( )。#include <iostream>using namespace std;int main() { int cnt = 0; for (int x = 0; x <= 10; x++) for (int y = 0; y <= 10; y++) for (int z = 0; z <= 10; z++) if (x + y + z == 15) cnt++; cout…

单选题 困难

题目描述

下面程序的输出为(     )。

#include <iostream>

using namespace std;

int main() {

int cnt = 0;

for (int x = 0; x <= 10; x++)

    for (int y = 0; y <= 10; y++)

        for (int z = 0; z <= 10; z++)

                    if (x + y + z == 15)

                      cnt++;

cout << cnt << endl;

return 0;

}


选项(单选)

上一题 下一题