题解 1192: 十->二进制转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

十->二进制转换

摘要: 有点复杂哈,主要是格式问题 #include int main() { int n; while((scanf("%d",&n))!=E……
优质题解

Manchester- 十->二进制转换

摘要:解题思路:1.设输入的数为number=12;2.求其对应二进制数的算法为:     12 /2 =6......(0);       6 /2 =3......(0);       3 /2 =1.……

十->二进制转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int t,a[10000],n,i,j; while(scan……

1192: 十->二进制转换

摘要:```cpp #include #include using namespace std; //进制转换并输出函数不考虑特殊情况 void transport(int x) { ……