pat甲 1001.A+B Format

本文解析PAT题目1001.A+B Format的解题思路及实现方法,介绍了两种解决方案:一是利用字符串处理进行格式化输出;二是采用递归方式实现千分位分隔。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1001. A+B Format (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits).

Input

Each input file contains one test case. Each case contains a pair of integers a and b where -1000000 <= a, b <= 1000000. The numbers are separated by a space.

Output

For each test case, you should output the sum of a and b in one line. The sum must be written in the standard format.

Sample Input
-1000000 9
Sample Output
-999,991

tips:1.pat不支持itoa函数,这里使用了sprintf代替,另外也可以自己写一个整数字符串转换函数
方法1:将整数转换为字符串处理
#include<iostream>
#include<string>
using namespace std;

int a ,b;
int main()
{
	cin>>a>>b;
	int c=a+b;
	char s[100];
	if(c<0){cout<<"-";
	c=-c;
	}
	sprintf(s,"%d",c);
	
	string ss(s);
	for(int j=0;j<=ss.length()-1;j++)
	{
		cout<<ss[j];
		if((ss.length()-1-j)%3==0&&j!=ss.length()-1)cout<<",";
	}
	return 0;
}


方法二:递归

#include<iostream>

using namespace std;


void solve(int a)
{
	if(a/1000==0)//出口 
	{
		cout<<a;
		return ;
	}

	solve(a/1000); 
	printf(",%03d",a%1000);//回溯 
	
 } 

int main()
{
	int a,b;
	cin>>a>>b;
	int ans=a+b;
	if(ans<0)
	{
		cout<<"-";
		ans=-ans;
	}
	solve(ans);
	
 } 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值