题解 | #又一版 A+B#

又一版 A+B

https://www.nowcoder.com/practice/9255c05d45b8406c9b588d7c57aa920b

#include<bits/stdc++.h>
using namespace std;

string add(int A, int B) {
	int rest= 0;
	string res= "";
	while(A!= 0&& B!= 0) {
		int a= A%10;
		int b= B%10;
		rest= a+ b+ rest;
		A/= 10;
		B/= 10;
		res= (char)(rest%10+ '0')+ res;
		rest/= 10;
	}
    if(A== 0){
		B+= rest;
	} else {
		A+= rest;
	}
	while(A!= 0) {
		res= (char)(A%10+ '0')+ res;
		A/= 10;
	}
	while(B!= 0) {
		res= (char)(B%10+ '0')+ res;
		B/= 10;
	}
	return res;
}

// 返回余数 
int divide(string &str, int m) {
	string res= "";
	int rest= 0;
	for(int i=0; i<str.length(); i++) {
		rest= rest*10+ str[i]-'0';
		res+= (char)(rest/m+ '0');
		rest%= m;
	}
	// cout<< str<< "/"<< m<< "="<< res<< "..."<< rest<< endl; 
	int idx= 0;
	while(res[idx]== '0') {
		idx++;
	}
	str= res.substr(idx);
	if(str.length()<1) {
		str= "0";
	}
	return rest;
}

string trans(string str, int m) {
	string res= "";
	while(str.compare("0")!= 0) {
		res= (char)(divide(str, m)+'0')+ res;
	}
	// cout<< "str="<< str<< endl;
	return res;
}

int main() {
	int m, A, B;
	while(cin>> m) {
		if(m== 0) break;
		cin>> A>> B;
		string plus= add(A, B);
		cout<< trans(plus, m)<< endl;
	}
	return 0;
}

全部评论

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务