为什么写的从高位到低位输出的却是从高位到低位?(1002题)

luffy 路飞AFO 2019-09-24 13:54:41 13

1002题


第一行输出x的位数n,接下来n行从高位到低位输出x的每一位上的数字。 样例 输入样例

123 输出样例

3 3 2 1

{{ vote && vote.total.up }}

共 4 条回复

wc048

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<<" "; }

}

Xionghaoyu straight a student

...

root 站长

修复了,谢谢你~

luffy 路飞AFO

而且评测有问题,评测只能从低位输到高位才对 从高位输到低位就对不了