Files
python/RuMenJingDian/LianXi/C_1_7.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

17 lines
445 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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;
}