回文数猜想

回文数猜想
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit

Status
Description
一个正整数,如果从左向右读(称之为正序数)和从右向左读(称之为倒序数)是一样的,这样的数就叫回文数。任取一个正整数,如果不是回文数,将该数与他的倒序数相加,若其和不是回文数,则重复上述步骤,一直到获得回文数为止。例如:68变成154(68+86),再变成605(154+451),最后变成1111(605+506),而1111是回文数。于是有数学家提出一个猜想:不论开始是什么正整数,在经过有限次正序数和倒序数相加的步骤后,都会得到一个回文数。至今为止还不知道这个猜想是对还是错。现在请你编程序验证之。

Input
每行一个正整数。
特别说明:输入的数据保证中间结果小于2^31。

Output
对应每个输入,输出两行,一行是变换的次数,一行是变换的过程。

Sample Input
27228
37649

Sample Output
3
27228--->109500--->115401--->219912
2

37649--->132322--->355553


#include<cstdio>
#include<iostream>
#include<string>
using namespace std;
int fun(int n)
{
	int result = 0;
	while (n != 0) {
		result = result * 10 + n % 10;
		n /= 10;
	}
	return result;
}
int main()
{
	int n;
	while (scanf("%d", &n) != EOF)
	{
		int count = 0;
		string ans;
		while (n != fun(n))
		{
			char temp[100];
			sprintf(temp, "%d", n);
			string ans2(temp);
			ans = ans + ans2 + "--->";
			n += fun(n);
			count++;
		}
		char temp[100];
		sprintf(temp, "%d", n);
		string ans2(temp);
		ans = ans + ans2 + '\n';
		printf("%d\n", count);
		cout << ans;
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值