#include <bits/stdc++.h>
using namespace std;
int main(){
int n = 12345;
cout<<n%10<<endl;//取个位的话直接取
cout<<(n/10)%10<<endl;//取十位的话先去掉个位再取模,相当于求1234的个位
cout<<(n/100)%10<<endl;//后面同理
cout<<(n/1000)%10<<endl;
cout<<(n/10000)%10;//其实写成n/10000就可以了
return 0;
}
吆西