#CH011. 整数的运算

    ID: 237 Type: Objective Tried: 3 Accepted: 2 Difficulty: 10 Uploaded By: Tags>信息学奥赛导学(C++语言基础入门)

整数的运算

阅读程序,填写对应的输出结果

cout << 2 + 3 << endl;

{{ input(1) }}

cout << 188 - 166 << endl;

{{ input(2) }}

cout << 2 * 31 << endl;

{{ input(3) }}

cout << 5 / 2 << endl;

{{ input(4) }}

cout << 15 % 4 << endl;

{{ input(5) }}