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

A31073. 运行下面的代码,屏幕上将输出( )。#include <iostream>using namespace std;int divide(int a, int b) { if (b == 0) { throw runtime_error("division by zero error "); } return a / b;}int main() { int x = 10; int y = 0; /…

单选题 较难

题目描述

运行下面的代码,屏幕上将输出(    )。

#include <iostream>

using namespace std;

int divide(int a, int b) {

      if (b == 0) {

            throw runtime_error("division by zero error ");

      }

      return a / b;

}

int main() {

      int x = 10;

      int y = 0; // 设为 0 会导致除零错误

      try {

            int result = divide(x, y);

            cout << "result: " << result << endl;

} catch (const runtime_error& e) {

            cout << "caught an exception: " << e.what() << endl;

      }

      return 0;

}

选项(单选)

上一题 下一题