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

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

筛选

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

摘要:解题思路:十进制转n进制的计算方法:每次除n取余,一直除到0为止,余数从后往前排列就是n进制的表示。注意事项:memset()的头文件,每次都要吃一个编译错误才想起来加。参考代码:// 题目 1055……

仅用pow函数进行进制转换

摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;int main(){ int i, j = 0, n, a[10] = { 0 }; cin >……

二级C语言-进制转换(数组)

摘要:解题思路:不断%8将值放到数组中,最后逆序输出注意事项:if的取值范围,应该是小于8而不是小于等于8参考代码:#include<stdio.h>int main(){    int a[100],n,……

超级简单的进制转换

摘要:解题思路:八进制表示%o注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); printf("%o",n); ……

二级C语言-进制转换

摘要:```cpp #include #include typedef struct SNode{ int data; struct SNode *next; }SNode,*Lin……

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

摘要:对所需转换数不断做对 8 取余数压入向量和本身除以 8 的操作直到这个数等于 0,最后将向量逆序输出即为所求。#include<bits/stdc++.h> using namespace std;……

C语言十进制转八进制

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){int n,k=0,j,i=0;scanf("%d",&n);for(;n>8;n……

真的最后亿题!

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