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

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

筛选

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

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

我的思路哦

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

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

摘要:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int x;   while(scanf("%d",&x)!=EOF)   {    ……

十->二进制转换qwdddddqwdq

摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main() { int ten; int two[100]; while (scanf("%d", &ten) != EOF……