包含小数处理的c++超长数字乘法计算器

该博客介绍了如何使用C++来设计一个计算器,它能够处理以字符串形式输入的超长数字,并且支持小数运算。通过特殊的算法,实现了对超过普通数值类型限制的大数字的乘法计算,同时处理了小数点后的精度问题。
摘要由CSDN通过智能技术生成

将数字以字符串形式存储和处理,包含小数处理


#include <iostream>
#include <string>
#include <cctype>
using namespace std;

int toint(char n) 
{
	switch (n) 
	{
	case '1': 
		return 1;
	case '2':
		return 2;
	case '3':
		return 3;
	case '4':
		return 4;
	case '5':
		return 5;
	case '6':
		return 6;
	case '7':
		return 7;
	case '8':
		return 8;
	case '9':
		return 9;
	case '0':
		return 0;
	default:
		return 999999;
	}
}

int deletep(string &a) {                         //运算时消除小数点
	string::iterator it;
	int i = 0;
	for (it = a.end()-1; it != a.begin();it--,i++) {
		if (*it == '.') {
			a.erase(it);
			return i;
		}
	}
	return 0;

}

void deletebackzero(string &a) {                  //去掉小数末尾的零
	string::iterator it;
	for (it = a.end() - 1; it != a.begin(); it--) {
		if (*it != '0') {
			if (*it == '.') { a.eras
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值