题解 | #浮点数加法# 暴力计算解题

浮点数加法

https://www.nowcoder.com/practice/ddec753f446e4ba4944e35378ba635c8

按照平时计算的步骤来

1)计算小数位加法

2)计算整数位加法(携带小数进位)

3)拼接两者,然后输出。

tip:计算时两个字符串长的放在左边,方便循环计算。

目前好像没看到我这种解法,在这里放一下吧。24/01/22

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

// jinwei:小数位进位 
string addZhengShu(string s1, int len1, string s2, int len2, int jinwei) {
	string res="";
	for(int i=0; i<len2; i++) {
		int a = (s1[len1-i-1]-'0');
		int b = (s2[len2-i-1]-'0');
		int temp= a+b+jinwei; 
		res = (char)(temp%10 + '0') + res;
		jinwei = temp/10;
	}
	for(int i=len2; i<len1; i++) {
		int a = (s1[len1-i-1]-'0');
		int temp= a+jinwei; 
		res = (char)(temp%10 + '0') + res;
		jinwei = temp/10;
	}
	if(jinwei!=0) {
		res = (char)(jinwei + '0') + res;
	}
	return res;
}

// str1小数位数idx1大于str2小数部分idx2 
string add(string str1, int idx1, string str2, int idx2) {
	int jinwei=0;
	// 易错点,直接拼接长出来的小数位 
	string res=str1.substr(str1.length()-idx1+idx2);
	for(int i=0; i<idx2; i++) {
		int a = str1[str1.length()-idx1+idx2-i-1]-'0';
		int b = str2[str2.length()-i-1]-'0';
		int temp = a+b+jinwei;
		res = (char)(temp%10+'0') + res;
		jinwei = temp/10;
	} 
	res = '.' + res;
	int zLen1 = str1.length()-idx1-1;
	int zLen2 = str2.length()-idx2-1;
	if(zLen1>zLen2) {
		res = addZhengShu(str1.substr(0, zLen1), zLen1, str2.substr(0, zLen2), zLen2, jinwei) + res;
	} else {
		res = addZhengShu(str2.substr(0, zLen2), zLen2, str1.substr(0, zLen1), zLen1, jinwei) + res;
	}
	return res;
}

int main() {
	string str1, str2;
	while(cin>> str1>> str2) {
		int idx1=0;
		int idx2=0;// 小数点后位数 
		string res;
		for(int i=0; i<str1.length(); i++) {
			if(str1[i]=='.') {
				// str1.find('.')
				idx1 = str1.length()-1-i; 
			}
		}
		idx2 = str2.length()-1-str2.find('.');
//		for(int i=0; i<str2.length(); i++) {
//			if(str2[i]=='.') {
//				idx2 = str2.length()-1-i; 
//			}
//		}
		if(idx1>idx2) {
			res = add(str1, idx1, str2, idx2);
		} else {
			res = add(str2, idx2, str1, idx1);
		}
		// 11.00
		for(int i=res.length()-1; i>=0; i--) {
			if(res[i]!='0' && res[i]!='.') {
				res = res.substr(0, i+1);
				break;
			}
		}
		cout<< res<< endl;
	}
	return 0;
}

全部评论

相关推荐

最近又搬回宿舍了,在工位坐不住,写一写秋招起伏不断的心态变化,也算对自己心态的一些思考表演式学习从开始为实习准备的时候就特别焦虑,楼主一开始选择的是cpp后端,但是24届这个方向已经炸了,同时自己又因为本科非92且非科班,所以感到机会更加迷茫。在某天晚上用java写出hello&nbsp;world并失眠一整晚后选择老本行干嵌入式。理想是美好的,现实情况是每天忙但又没有实质性进展,总是在配环境,调工具,顺带还要推科研。而这时候才发现自己一直在表演式学习,徘徊在设想如何展开工作的循环里,导致没有实质性进展。现在看来当时如果把精力专注在动手写而不是两只手端着看教程,基本功或许不会那么差。实习的焦虑5月,楼主...
耶比:哲学上有一个问题,玛丽的房间:玛丽知道眼睛识别色彩的原理知道各种颜色,但是她生活在黑白的房间里,直到有一天玛丽的房门打开了她亲眼看到了颜色,才知道什么是色彩。我现在最大可能的减少对非工作事情的思考,如果有一件事困扰了我, 能解决的我就直接做(去哪里或者和谁吵架等等……),解决不了的我就不想了,每一天都是最年轻的一天,珍惜今天吧
投递比亚迪等公司10个岗位 > 秋招被确诊为…… 牛客创作赏金赛
点赞 评论 收藏
分享
10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务