UDP广播协议叫吃饭


私信TA

用户名:Mustenaka

访问量:149502

签 名:

个人博客www.mustenaka.cn

等  级
排  名 13
经  验 25372
参赛次数 8
文章发表 197
年  龄 3
在职情况 学生
学  校 Sky_box
专  业 NE

  自我简介:

欢迎光临我的博客www.mustenaka.cn,Python,C#,U3D,C/C++开发合作可以找我

参考代码:

#include<bits/stdc++.h>
using namespace std;
int main() {
	string str1,str2;
	int n;
	cin>>n;
	while(n--) {
		cin>>str1>>str2;
		int ans[2];
		for(int i=str1.length()-1,j=str2.length()-1,k=1; i>=0&&j>=0&&k>=0; i--,j--) {
			ans[k--]=(str1[i]-'0')+(str2[j]-'0');
		}
		if(ans[1]>=10) {
			int temp=ans[1]/10;
			ans[1]%=10;
			ans[0]+=temp;
		}
		if(ans[0]>=0) {
			ans[0]%=10;
		}
		cout<<ans[0]<<ans[1]<<endl;
	}
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »