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

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

筛选

十进制向二进制转换

摘要:解题思路:用一个while循环通过每次让n对2求余,结果保留的一个数组中,再把数组倒着输出,注意事项:如果n小于零,需要提前输入一个负号,再加上n=-n;如果n为0是,直接输出0参考代码:#inclu……

十->二进制转换qwdddddqwdq

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

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

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

我的思路哦

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