C二级辅导-进制转换 (C语言代码) 摘要:#include<stdio.h>int main(){ int x; scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2017年06月18日 0 点赞 0 评论 1024 浏览 评分: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 评论 507 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>eight(int n){ if(n>=8){ eight(n/8);//先执行循环体,在执行printf,但是n并…… 题解列表 2018年04月04日 0 点赞 0 评论 649 浏览 评分:0.0
二级C语言-进制转换-题解(C语言代码) 摘要:解题思路:用一个数组保存余数,并让n/=8,n=0,作为循环结束条件即可。注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ in…… 题解列表 2020年09月13日 0 点赞 0 评论 222 浏览 评分:0.0
二级C语言-进制转换 摘要:解题思路:通过查阅资料得知一个十进制数通过短除法除8,其余数连起来可得到一个8进制数通过此特性可求解本题注意事项:参考代码:#include<iostream>using namespace std;…… 题解列表 2024年01月29日 0 点赞 0 评论 108 浏览 评分:0.0
105555579 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x;scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2021年11月05日 0 点赞 0 评论 106 浏览 评分:0.0
二级C语言-进制转换java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月20日 0 点赞 0 评论 136 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:#include<stdio.h>int main(){ int m; scanf("%d",&m); printf("%o",m); }…… 题解列表 2019年02月12日 0 点赞 0 评论 772 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2018年10月14日 0 点赞 0 评论 317 浏览 评分:0.0
C二级辅导-进制转换-题解(C语言代码) 摘要: #include void main() { int x,a[100],i,k=0; scanf("%d",&x); for(i=0;x…… 题解列表 2019年07月31日 0 点赞 0 评论 662 浏览 评分:0.0