欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数字颠倒

程序员文章站 2022-07-13 15:20:52
...



#include <iostream>

using namespace std;

char t[32];

int main()
{
	int a,k = 0;
	cin>>a;
	while(a)
	{
		int temp = a % 10;
		t[k] = temp + '0';
		k++;
		a = a / 10;
	}
	cout<<t;

	return 0;
}