题目链接: 酷町堂:1005
如题
整型变量 n,m等于0; 输入n; while(n!=0){ //倒置,循环取位数函数,经常用的到~ m=m*10+n%10; n/=10; } 输出m;
while(n){ s=s*10+n%10; n/=10; } cout<<s;