1 条题解
-
0盛泽二中12209水宇辰 (12209水宇辰) LV 6 @ 2021-12-30 19:45:25
#include <iostream> using namespace std; int main( ) { int x,cnt=0; cin>>x; while(1) { int xx=x,y=0; while(xx) { y=y*10+xx%10; xx/=10; } if(y==x)break; x+=y; cnt++; } cout<<cnt<<endl; }
- 1
信息
- ID
- 1212
- 难度
- 4
- 分类
- (无)
- 标签
- 递交数
- 269
- 已通过
- 111
- 通过率
- 41%
- 被复制
- 7
- 上传者