首页 > 试题广场 >

二进制数

[编程题]二进制数
  • 热度指数:25276 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
大家都知道,数据在计算机里中存储是以二进制的形式存储的。 有一天,小明学了C语言之后,他想知道一个类型为unsigned int 类型的数字,存储在计算机中的二进制串是什么样子的。 你能帮帮小明吗?并且,小明不想要二进制串中前面的没有意义的0串,即要去掉前导0。

输入描述:
多行,每一行表示要求的数字


输出描述:
输出共T行。每行输出求得的二进制串。
示例1

输入

23
535
2624
56275
989835

输出

10111
1000010111
101001000000
1101101111010011
11110001101010001011
头像 鱼儿恋上水
发表于 2020-03-22 22:22:38
如果我们在二进制的世界里就好了,我是1,你是0,那样的话,我们两个合在一起就是整个世界#include <iostream> #include <cstdio> #include <string> #include <algorithm> using 展开全文
头像 aaaawei
发表于 2021-01-17 14:09:17
include include include using namespace std;stack<int>st;int main(){ int a; int b[100]; while(cin>>a){//循环输入 int i=0; 展开全文
头像 不红红黑路同
发表于 2022-02-08 14:45:21
#include <iostream> #include <string> using namespace std; int main(){ int n; string ans; while(scanf("%d",&n)!=EOF){ 展开全文
头像 Blue_Moon1
发表于 2024-03-29 09:56:09
#include<iostream> using namespace std; int main(){ long long n; while(scanf("%d",&n)!=EOF){ int res[10000]; //存放二进制数 i 展开全文
头像 牛客652687585号
发表于 2022-02-21 17:28:18
#include<iostream> #include<cstdio> #include<vector> using namespace std; int main(){     unsigne 展开全文
头像 在考古的小鱼干很有气魄
发表于 2023-03-16 16:04:12
#include <bits/stdc++.h> #define MAX 50 using namespace std; void d2b(unsigned int n){ int data[MAX],len = 0; while(n){ data[len++] = n 展开全文
头像 猫和老鼠之张鱼小丸子
发表于 2024-03-05 15:00:01
#include <iostream> using namespace std; int main() { unsigned int a; while(cin>>a) { string s; while(a) 展开全文
头像 普罗列塔丽亚
发表于 2022-01-03 15:16:46
二进制数,直接用移位运算即可   #include<stdio.h> int main(){     unsigned int input;     展开全文
头像 rainman_
发表于 2023-03-16 19:13:21
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> using 展开全文
头像 牛客575349009号
发表于 2023-03-23 20:29:52
#include <stdio.h> int main() { int a; int s[1000]; while (scanf("%d", &a) != EOF) { int i=0; while(a>0){ s[ 展开全文

问题信息

难度:
148条回答 13126浏览

热门推荐

通过挑战的用户

查看代码
二进制数