1 条题解
- 
  1
端木俁 (房佳坤) LV 8 @ 2021-11-21 20:52:57
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int m = 0; int nn = n; while ( nn ) m = m * 10 + (nn % 10), nn /= 10; if ( m == n ) puts("Yes"); else puts("No"); return 0; } 
- 1
 
信息
- 难度
 - 2
 - 分类
 - (无)
 - 标签
 - 递交数
 - 19
 - 已通过
 - 8
 - 通过率
 - 42%
 - 上传者