竞赛
考级
拿到题,先审题。首先,题目要求我们输入两个整数a 和 b,输出 a+b 的值,并且还要求使用函数实现。话不多说,先把主函数写上:#include<iostream> using namespace std;。接下来再定义一个名为“add”的函数(add自带加法的意思):void add(int a,int b){,用来完成“计算a+b 的值”的功能。然后,拿一个“cout<<a+b;”用来计算 a+b 的结果。最后就简单了,int一个主函数main,创建两个变量a和b,逐个输入,最后的最后引用“add(a,b)”这个函数完成计算。不要忘了return 0;哦。 #include<iostream> using namespace std; void add(int a,int b){ //定义一个名为“add”的函数 cout<<a+b; //计算 a+b 的结果 } int main(){ int a,b; //创建两个变量a和 cin>>a>>b; //逐个输入变量 add(a,b); //引用“add(a,b)”这个函数完成计算 return 0; }
琮
初次写题解,请多多指教。
anyin775 请回关
#include<iostream> using namespace std; void add(int a,int b){ cout<<a+b; } int main(){ int a,b; cin>>a>>b; add(a,b); return 0; }
题目要我们用函数,所以不能用
ACOI
点个赞吧
JustFwd
#include<iostream> using namespace std;void add(int a,int b){cout<<a+b; }int main(){int a,b;cin>>a>>b; add(a,b); }
🕈.👎.☝✌💧❄☜☼
#include<iostream> using namespace std; int main(void) { while (1) { int p; char h; int a; int b; double u; cin >> a; while (1) { cin >> b; h = 'h'; for(;;){ p = 9; u = 1145.14; char l; l = 'p'; for (;;) { for (int re = 10;; re++) { if (re == 10) { }
JasonYin-华威
#include <iostream> using namespace std; int MP5(int a,int b){ return a+b; } int main(){ int a, b; cin >> a >> b; cout << MP5(a,b); return 0; }
《切尔诺贝利》八年土著!
YuQing1919
cos
#include <iostream> using namespace std; int f(int a,int s) { return a+s; } int main() { int a,s; cin>>a>>s; cout<<f(a,s); return 0; }
励志成为大神
yy
CSGO
超简单! 只需十行代码! @CPZT(C++) 喜欢的话记得关注一下噢~~~~~~ 😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎 😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎
信奥--小潘 CPZT ACGO
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }
太好了,下雨了
#include <iostream> using namespace std; int sum(int a,int b){ return a+b; } int main(){ int a,b; cin >> a >> b; cout << sum(a,b); }
呜呼起飞
对方正在输入...
JMZ詹总
这道题不用函数其实也能做,但是我还是先用函数做吧,注意,两个数虽然都在int范围之内,但是两个数相加的和可能会超过int的范围,所以定义的函数得是long long类型的,AC代码如下: 不过,不用函数做也可以,就直接变成了long long版的A+B,在定义变量时定义为long long类型就可以,AC代码如下:
MK云得
#include<iostream> using namespace std; void f(int a,int b){ cout << a+b; } int main(){ int a,b; cin >> a >> b; f(a,b); }
180****3299
共24条