7 条题解
-
2
萌新·zty (曾天龠) LV 9 @ 6 年前
print((bin(int(input())))[2:])
-
27 年前@
-
17 年前@
-
04 年前@
n=int(input())
s=0
y=0
e=0
m=0while n>=1:
y=n%2
n=n//2
e=y*10**m+e
m=m+1print(e)
-
05 年前@
其实很简单,下面是代码,慢慢看吧
```cpp
#include <iostream>std::string a = ""; //用string类型来保存数据
int main()
{
unsigned long long n;
std::cin >> n;
unsigned int len = -1; //用来计数,下标从0开始,所以初始值为-1
while (n != 0)
{
a += char(n % 2 + '0'); //把数变成字符存入字符串
len++;
n /= 2; //n每次除以2
}
while (len > 0) //逆向输出
std::cout << a[len--];
std::cout << a[len];
std::cout << std::endl; //回车
return 0;
}
``` -
06 年前@
-
-17 年前@
a=int(input())
b=bin(a).replace('0b','')
print(b)
- 1
信息
- 难度
- 8
- 分类
- (无)
- 标签
- (无)
- 递交数
- 389
- 已通过
- 211
- 通过率
- 54%
- 被复制
- 3
- 上传者