首页 > 试题广场 >

#include using names...

[填空题]
#include <iostream>
using namespace std;
int a, b, c, d, e, ans;
int main( ) {
    cin >> a >> b >> c;
    d = a + b;
    e = b + c;
    ans = d + e;
    cout << ans << endl;
    return 0;
}

输入:1 2 5
输出:1

这道题你会答吗?花几分钟告诉大家答案吧!