通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
#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; }
输入: 1 2 5
输出: _______