C++实现数字反转

1.现将数字n对10取余
2.再将数字n对10取整
3.循环第一,二步即可

#include 
using namespace std;
int main(void)
{
 int n,right_digit;
 cout<<"Enter the number:";
 cin>>n;
 cout<<"The number in reverse order is ";
 do
 {
  right_digit = n%10;
  cout <

调试结果:

你可能感兴趣的:(C++实现数字反转)