C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2018年10月14日 0 点赞 0 评论 313 浏览 评分:0.0
C二级辅导-进制转换 (C++代码)(巨简单做法) 摘要:参考代码:#include <iostream> using namespace std; int main() { int a; cin >> a; co…… 题解列表 2018年10月15日 1 点赞 7 评论 1516 浏览 评分:7.0
C二级辅导-进制转换 (C语言代码) 摘要:#include "stdafx.h"int main(){ int n,a[1000],t,i=0; scanf("%d", &n); do { t = n % 8; a[i++] = t; …… 题解列表 2018年10月25日 0 点赞 0 评论 316 浏览 评分:0.0
就是想做麻烦 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n,a[100],i,s; scanf("%d",&…… 题解列表 2018年11月12日 1 点赞 1 评论 247 浏览 评分:0.0
C二级辅导-进制转换 (C++代码)(栈的运用,看懂了会写所有的十进制转化成别的进制的问题) 摘要:解题思路:注意事项:参考代码://运用到了栈 #include <iostream> #include<stack> using namespace std; int main(int arg…… 题解列表 2018年11月16日 0 点赞 0 评论 766 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:%o输出八进制数%ox输出十六进制数注意事项:参考代码:int num; scanf("%d",&num); printf("%o\n",num);…… 题解列表 2018年12月04日 0 点赞 0 评论 473 浏览 评分:0.0
C二级辅导-进制转换 (1.强制转换2.递归3.辗转相除) 摘要:#include<stdio.h> #include <string.h> #include <stdlib.h> long DecimalToOctal(long num); //2.递归 -…… 题解列表 2018年12月24日 0 点赞 1 评论 1079 浏览 评分:9.9
题解1055 数据结构-栈实现进制转换 (C/C++代码) 摘要:解题思路:利用栈的“后进先出”特点,让余数入栈,输出时取栈顶元素,再让其不断出栈。注意事项:stack<int> stk; //定义一个栈stk.push(x); //将x入栈stk…… 题解列表 2018年12月30日 2 点赞 0 评论 979 浏览 评分:7.3
C二级辅导-进制转换 (C语言代码) 摘要:#include<stdio.h>int main(){ int m; scanf("%d",&m); printf("%o",m); }…… 题解列表 2019年02月12日 0 点赞 0 评论 768 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); int i=0; int b[10000]; while(a!=0…… 题解列表 2019年03月24日 0 点赞 0 评论 341 浏览 评分:0.0