include换成#include <iostream> using namespace std;

luna  •  3天前


include

using namespace std;

int main() {

int a, b, c = 0;
cin >> a;
while (a != 0) {
	b = a % 10;
	c *= 10;
	c += b;
	a /= 10;
}
cout << c;
return 0;

}


评论:

请先登录,才能进行评论