码迷,mamicode.com
首页 > 编程语言 > 详细

C++实现整数反序输出

时间:2014-10-19 14:06:07      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   for   sp   div   on   

// 2.cpp : Defines the entry point for the console application.


// 整数反序输出

#include "stdafx.h"

#include "iostream.h"

   void main ()
   {
      int a,b,c;
      cin>>a;
      b=0;
      do{
        c=a%10; 
        a=a/10;
        b=b*10+c;
      }while(a);  //做判断

      cout<<b<<endl;

   }

 

C++实现整数反序输出

标签:style   blog   color   io   os   for   sp   div   on   

原文地址:http://www.cnblogs.com/hardwork/p/4034828.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!