OK呀好吧,这道题也是十分的简单
2024-01-03 16:58:47
发布于:浙江
25阅读
0回复
0点赞
#include <iostream>
using namespace std;
string s;
int n,x;
char c;
int main()
{
cin>>n;
while(n!=0){
x=n%2;
c=x+'0';
s=c+s;
n=n/2;
}
if(s==""){
cout<<0;
}else{
cout<<s;
}
return 0;
这里空空如也
有帮助,赞一个