105555579 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x;scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2021年11月05日 0 点赞 0 评论 103 浏览 评分:0.0
真的最后亿题! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a,b;scanf("%d",&a);printf("%o",a);return 0;}…… 题解列表 2021年11月15日 0 点赞 0 评论 152 浏览 评分:0.0
C语言十进制转八进制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){int n,k=0,j,i=0;scanf("%d",&n);for(;n>8;n…… 题解列表 2021年12月03日 0 点赞 0 评论 297 浏览 评分:0.0
1055: 二级C语言-进制转换 摘要:对所需转换数不断做对 8 取余数压入向量和本身除以 8 的操作直到这个数等于 0,最后将向量逆序输出即为所求。#include<bits/stdc++.h> using namespace std;…… 题解列表 2021年12月21日 0 点赞 0 评论 145 浏览 评分:0.0
二级C语言-进制转换 摘要:```cpp #include #include typedef struct SNode{ int data; struct SNode *next; }SNode,*Lin…… 题解列表 2022年02月20日 0 点赞 0 评论 178 浏览 评分:0.0
超级简单的进制转换 摘要:解题思路:八进制表示%o注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); printf("%o",n); …… 题解列表 2022年03月01日 0 点赞 0 评论 217 浏览 评分:9.9
二级C语言-进制转换-(C++代码) 摘要:#include<iostream> #include <cmath> using namespace std; int main() { int a, b, see = 0, i …… 题解列表 2022年03月05日 0 点赞 0 评论 290 浏览 评分:6.0
二级C语言-进制转换(数组) 摘要:解题思路:不断%8将值放到数组中,最后逆序输出注意事项:if的取值范围,应该是小于8而不是小于等于8参考代码:#include<stdio.h>int main(){ int a[100],n,…… 题解列表 2022年03月11日 0 点赞 0 评论 223 浏览 评分:0.0
仅用pow函数进行进制转换 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;int main(){ int i, j = 0, n, a[10] = { 0 }; cin >…… 题解列表 2022年03月13日 0 点赞 0 评论 470 浏览 评分:9.9
编写题解 1055: 二级C语言-进制转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n=0; scanf("%d",&n); printf("%o",n); ret…… 题解列表 2022年03月14日 0 点赞 0 评论 98 浏览 评分:0.0