题解 | #又一版 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;
}

全部评论

相关推荐

秋招进行到现在终于能写总结了。完全没想到战线会拉这么长,过程会如此狼狈,不过更应该怪自己太菜了。好在所有的运气都用在了最后,也是有个去处。背景:双2本硕科班,无竞赛,本科一段研究所实习,硕士一段大厂暑期实习但无转正。技术栈是C++&nbsp;&amp;&nbsp;Golang,实习是客户端音视频(而且是鸿蒙端开发),简历两个C++项目一个Golang项目。主要投递岗位:后端,cpp软开,游戏服务端,测开,以及一些不拘泥于Java的岗位。从8月起总共投递123家公司,笔试数不清了,约面大约30家。offer/oc/意向:友塔游戏(第一个offer,面试体验很好,就是给钱好少南瑞继保(计算机科班点击就送(限男生),不...
乡土丁真真:佬很厉害,羡慕~虽然我还没有到校招的时候,也想讲一下自己的看法:我觉得不是CPP的问题,佬的背书双2,技术栈加了GO,有两段实习。投了123,面了30.拿到11个offer。这个数据已经很耀眼了。这不也是CPP带来的吗?当然也不止是CPP。至少来说在这个方向努力过的也会有好的结果和选择。同等学历和项目选java就会有更好的吗?我个人持疑问态度。当然CPP在方向选择上确实让人头大,但是我觉得能上岸,至于最后做什么方向,在我看来并不重要。至于CPP特殊,有岗位方向的随机性,java不是不挑方向,只是没得选而已。也希望自己以后校招的时候能offer满满
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务