Coding is the closest thing we have to superpower !

50 : 依样画葫芦-求三个数的和
描述

下面一段程序,实现输入一个数,输出它的两倍

#include<bits/stdc++.h>

using namespace std;

int main() {

int a,c;

cin>>a;

c=a*2;

cout<<c<<endl;

return 0;

}

下面一段程序,实现输入两个数,输出他们的和

#include<bits/stdc++.h>

using namespace std;

int main() {

int a,b,c;

cin>>a>>b;

c=a+b;

cout<<c<<endl;

return 0;

}

可以对比实现,如何输入3个数,并输出他们的和

#include<bits/stdc++.h>

using namespace std;

int main() {

int a,b,c,d;

;//这里需要读入3个数

;//这里需要把3个数的算出来存入到d中

cout<<d;//这行的含义是输出d return 0;

}

 

 

输入

输入三个整数

输出

输出一个整数

样例

输入

4 5 6

输出

15

输入

11 22 33

输出

66

输入

7 8 9

输出

24
语言:
主题: