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

浮点数加法

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;
}

全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务