Bitset:
#include#include using namespace std;int main(){ stack st; int n; while(cin>>n){ while(n){ st.push(n%2); n/=2; } while(!st.empty()){ cout<
本文共 313 字,大约阅读时间需要 1 分钟。
Bitset:
#include#include using namespace std;int main(){ stack st; int n; while(cin>>n){ while(n){ st.push(n%2); n/=2; } while(!st.empty()){ cout<
转载于:https://blog.51cto.com/beyond316/1257420