1002题
第一行输出x的位数n,接下来n行从高位到低位输出x的每一位上的数字。 样例 输入样例
123 输出样例
3 3 2 1
0 分 #include<bits/stdc++.h> using namespace std; int main() { int n,h=0,i,t; cin>>n; t=n; while(n>=1) { n=n/10; h=n%10; i++; } cout<<i<<" "; while(t>=1) { h=t%10; t=t/10; cout<<h<<" "; }
}
...
修复了,谢谢你~
而且评测有问题,评测只能从低位输到高位才对 从高位输到低位就对不了
共 4 条回复
0 分 #include<bits/stdc++.h> using namespace std; int main() { int n,h=0,i,t; cin>>n; t=n; while(n>=1) { n=n/10; h=n%10; i++; } cout<<i<<" "; while(t>=1) { h=t%10; t=t/10; cout<<h<<" "; }
}
...
修复了,谢谢你~
而且评测有问题,评测只能从低位输到高位才对 从高位输到低位就对不了