/ /

记录详情

Accepted


  
正在同步测试数据,请稍后
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Accepted 2ms 384.0 KiB
#2 Accepted 2ms 384.0 KiB
#3 Accepted 1ms 384.0 KiB
#4 Accepted 1ms 384.0 KiB
#5 Accepted 1ms 384.0 KiB

代码

#include<iostream>
using namespace std;
int Reverse(int n) 
{
	int t;
	t=n;
	int s=0;
	while(n)
	{
	s=s*10+n%10;
	n/=10;
	}
	if(s==t)
	{
		return 1;
	}
	else
	return 0;
}
int main()
{
	int m,sum=0,a;
	cin>>m;
	while(Reverse(m)==0)
	{
		 int count=0;
		a=m;
		sum++;
		while(a)
		{
		count=count*10+a%10;
		a/=10;	
		}
		m+=count;
		count=0;
	}
	cout<<sum;
}

信息

递交者
类型
递交
题目
P1024 C6 变身几次成为回文数
题目数据
下载
语言
C++
递交时间
2021-08-12 12:37:47
评测时间
2021-08-12 12:37:47
评测机
分数
100
总耗时
10ms
峰值内存
384.0 KiB