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