剖析整数反序输出

/*#include// . 编写一个程序,要求输入一个整数,将各位数字反序后输出。
using namespace std;
int main(){

int x,ox;
int bw,sw,gw;
cout<<"请输入一个整数:"<>x;
bw=x%100;                                
sw=x%10;
gw=x%1;
ox=gw*100+sw*10+bw*1;
cout<<"取反后数字为:"<

}
*/

using namespace std;
int main()
{
int n,right_digit,newnum=0;
cout<<"请输入整数值:"< cin>>n;
cout<<"反序输出数据为:"< do
{

  right_digit=n%10;
  newnum=newnum*10+right_digit;
  n/=10;

}while (n);
cout< system("PAUSE");
return 0;
}

你可能感兴趣的:(jsonp)