1 条题解
- 
  1
端木俁 (房佳坤) LV 8 @ 2021-12-13 21:17:58
#include <iostream> #include <cstring> #include <algorithm> using namespace std; int main() { string s; cin >> s; reverse(s.begin(), s.end()); int beg = 0; while ( s[beg] == '0' ) beg ++ ; for ( int i = beg; i < s.size(); i ++ ) cout << s[i]; return 0; } 
- 1
 
信息
- 难度
 - 2
 - 分类
 - (无)
 - 标签
 - 递交数
 - 8
 - 已通过
 - 7
 - 通过率
 - 88%
 - 被复制
 - 1
 - 上传者