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

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

筛选

十->二进制转换 (C语言代码)

摘要:解题思路:  阶次除二      逆序输出注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int a[18];int ma……

十->二进制转换 (C语言代码)

摘要:解题思路:一定要用int型否则报错,long型都不行简直扯淡。注意事项:参考代码:#include<stdio.h>#include<math.h>void binary(int n);int mai……

我的思路哦

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, a[100], i; while (scanf("%d", &n)……

c++ 递归栈

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; void DP(int n) {     if(……

十进制转二进制

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<stack>stack<char> s;int main(){    int……

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

摘要:解题思路:注意事项://取绝对值,方便计算以及输出//输出10进制数//输出二进制数负号//存放二进制数//取绝对值,方便计算以及输出//换行参考代码:#include <stdio.h>#inclu……