#include "stdafx.h"
#include <iostream>
using namespace std;

void arith(int a)
{
    if(a%10!=0)
    {
        arith(a/10);
        cout<<a%10;
    }
}
int _tmain(int argc, _TCHAR* argv[])
{
    int a=486862;
    arith(a);
    int m;
    cin>>m;
}

相关文章:

  • 2022-02-19
  • 2021-12-04
  • 2021-09-13
  • 2022-12-23
  • 2022-02-01
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-07
  • 2022-12-23
  • 2020-04-15
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
相关资源
相似解决方案