wu


私信TA

用户名:cncfvc

访问量:227387

签 名:

读研狗没有时间刷题了~~

等  级
排  名 3
经  验 37421
参赛次数 8
文章发表 265
年  龄 25
在职情况 学生
学  校 电子科技大学
专  业 通信工程

  自我简介:

写代码 真好玩 ~



参考代码:

#include<iostream>
#include<cstring>
#include<sstream>
using namespace std;
int f(string str)
{
	string str1="";
	for(int i=str.length()-1;i>=0;i--)
	{
		str1+=str[i];
	}
	int num;
	stringstream ss(str1);
	ss>>num;
	//cout<<num<<endl;
	return num;
}
int main()
{
	string a,b;
	while(cin>>a>>b)
	{
		int a1=f(a);
		int b1=f(b);
		int c=a1+b1;
		stringstream ss;
		ss<<c;
		cout<<f(ss.str())<<endl;
	}
	return 0;
}


 

0.0分

1 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »