题解
2023-03-26 09:51:01
发布于:江苏
22阅读
0回复
0点赞
#include <iostream>
#include <stack>
using namespace std;
int main()
{
int n;
cin>>n;
stack<int>st;
while(n)
{
st.push(n%2);
n/=2;
}
while (!st.empty())
{
cout<<st.top();
st.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个