当前位置:   article > 正文

C++实现数字反转_数字反转c++语言程序

数字反转c++语言程序

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

#include <iostream>
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 <<right_digit;
  n/=10;
 }
 while(n!=0);
 cout<<endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

调试结果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/程序质量控制师/article/detail/60521?site
推荐阅读
相关标签
  

闽ICP备14008679号