C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:10除以8的余数,倒着排列起来就是10的八进制数参考代码:#include <stdio.h>int main(){ int n,a[50],i=0,j; scan…… 题解列表 2018年08月23日 0 点赞 0 评论 468 浏览 评分:0.0
二级C语言-进制转换(python) 摘要:解题思路:二进制:bin() 八进制:oct() 十六进制:hex()注意事项:去除前缀可用切片实现操作参考代码:a=int(input())c=o…… 题解列表 2024年03月14日 0 点赞 0 评论 174 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o\n",n); return 0;}…… 题解列表 2019年05月10日 0 点赞 0 评论 506 浏览 评分:0.0
1055 二级C语言转换 摘要:```c #include int main(){ int n; scanf("%d",&n); printf("%o",n); return 0; } ``````c …… 题解列表 2022年05月12日 0 点赞 0 评论 155 浏览 评分:0.0
编写题解 1055: 二级C语言-进制转换(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ int n; scanf("%d", &n); int a[100]…… 题解列表 2022年07月16日 0 点赞 0 评论 97 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int n,a; scanf("%d",&n); if(n<9) pr…… 题解列表 2018年05月12日 0 点赞 0 评论 340 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:正确运用转置符号注意事项:题目很简单,但不要把%x与%o搞混,前者是十六进制后者是八进制,c语言中没有%多少来表示二进制参考代码:#include"stdio.h"int main(){ …… 题解列表 2019年05月07日 0 点赞 0 评论 328 浏览 评分:0.0
C二级辅导-进制转换 (Java代码) 摘要:解题思路:查表法import java.util.Scanner;public class 二进制转换 { public static void main(String[]ages) { Scann…… 题解列表 2018年03月07日 1 点赞 0 评论 1104 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n); retur…… 题解列表 2017年12月18日 0 点赞 0 评论 843 浏览 评分:0.0
1055: 二级C语言-进制转换 摘要:对所需转换数不断做对 8 取余数压入向量和本身除以 8 的操作直到这个数等于 0,最后将向量逆序输出即为所求。#include<bits/stdc++.h> using namespace std;…… 题解列表 2021年12月21日 0 点赞 0 评论 144 浏览 评分:0.0