标签:style blog io color os for sp strong 数据
描述
已知w是一个大于10但不大于1000000的无符号整数,若w是n(n≥2)位的整数,则求出w的后n-1位的数。
4 1023 5923 923 1000
23 923 23 0
#include<iostream> #include <string> using namespace std; int main() { int n; string str; cin>>n; while(n--) { int m =0; int k = 0; cin>>str; int num = str.size(); for(int ii=1;ii<num;ii++) { if(str[ii]!=‘0‘) { for(int i=1;i<num;i++) { if(str[i]!=‘0‘) { k = i; break; } } for(int j=k;j<num;j++) cout<<str[j]; break; } else m++; if(m == num-1) cout<<‘0‘; } cout<<endl; } return 0; }
标签:style blog io color os for sp strong 数据
原文地址:http://www.cnblogs.com/imwtr/p/4069499.html