孩子们我回来了
2024-04-05 09:38:39
发布于:江苏
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a;
cin>>a;
stack<int> b;
while(a){
b.push(a%2);
a/=2;
}
while(b.size()){
cout<<b.top();
b.pop();
}
return 0;
}
这里空空如也
有帮助,赞一个