二级C语言-进制转换-题解(Python代码)(超级简单) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月03日 0 点赞 1 评论 1088 浏览 评分:2.0
C二级辅导-进制转换 (C语言代码) 摘要:题目分析 送命题..如果你看见这题 绝对是送命题 %a(%A) 浮点数、十六进制数字和p-(P-)记数法(C99)%c 字符%d 有符号十进制整数%f 浮点数(包括float和doulb…… 题解列表 2017年06月17日 9 点赞 0 评论 1591 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:#include<stdio.h>int main(){ int x; scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2017年06月18日 0 点赞 0 评论 1248 浏览 评分:0.0
C二级辅导-进制转换 (C++代码) 摘要:#include <iostream>#include <iomanip>using namespace std;int main (){ int x; cin>>x; cout<<oct<<x<<e…… 题解列表 2017年07月02日 1 点赞 0 评论 1699 浏览 评分:0.0
C二级辅导-进制转换 (C++代码) 摘要:解题思路:用C++的头文件<iomanip>里面的库函数参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2017年07月11日 0 点赞 0 评论 1548 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o\n",n); ret…… 题解列表 2017年07月23日 0 点赞 0 评论 1019 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:#include<stdio.h> void change(int n) { int t; if(n==0) return ; change(n/8); p…… 题解列表 2017年07月24日 2 点赞 0 评论 1551 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:利用递归思想写了个八进制转换函数注意事项:参考代码:#include<stdio.h> int main(){ int n; scanf("%d",&n); …… 题解列表 2017年07月30日 7 点赞 1 评论 1035 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n);}…… 题解列表 2017年08月12日 0 点赞 0 评论 872 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int number,t,a[100],i=0; scanf("%d",&number); do{ a[i]=number%8; …… 题解列表 2017年08月28日 0 点赞 0 评论 1166 浏览 评分:0.0