普鲁士的荣耀
2024-04-05 09:58:11
发布于:江苏
2阅读
0回复
0点赞
#include <iostream>
#include <stack>
using namespace std;
stack <int> s;
int main()
{
int n = 0;
cin >> n;
while (n)
{
s.push(n % 2);
n /= 2;
}
while (s.size())
{
cout << s.top() ;
s.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个