1 条题解
- 
  0
盛泽二中12209水宇辰 (12209水宇辰) LV 5 @ 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
 - 分类
 - (无)
 - 标签
 - 递交数
 - 279
 - 已通过
 - 119
 - 通过率
 - 43%
 - 被复制
 - 7
 - 上传者