5.输入一个正整数按逆序输出。
#include<iostream.h>
main()
{
int m,n;
cout<<"input m=";
cin>>m;
if(m<0)m=fabs(m);
while(m)
{ n=m%10;
cout<<m;
n/=10;
}
蝶梦疏妄
相关分类