You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
429 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false); //读入输出优化的强迫症
int n;
cin >> n;
//求3位数的反转
int gewei = n % 10; //个位
int shiwei = n / 10 % 10; //十位
int baiwei = n / 100; //百位
cout << gewei << shiwei << baiwei << endl;
//补0输出3位数
printf("%03d",25); //结果为025果然神奇
return 0;
}