题解 1055: 二级C语言-进制转换

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

筛选

真的最后亿题!

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a,b;scanf("%d",&a);printf("%o",a);return 0;}……

C二级辅导-进制转换 (C语言代码)

摘要:解题思路:注意事项:10除以8的余数,倒着排列起来就是10的八进制数参考代码:#include <stdio.h>int main(){     int n,a[50],i=0,j;     scan……