C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2018年10月14日 0 点赞 0 评论 312 浏览 评分:0.0
C二级辅导-进制转换 (Java代码) 摘要:解题思路:注意事项:参考代码:package com.cx;import java.util.Scanner;public class Demo1055 { public static voi…… 题解列表 2018年10月10日 0 点赞 0 评论 523 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意八进制和十进制的区别就行了,这是一道基础题注意事项:%d是十进制,%o是八进制参考代码:#include<stdio.h>int main(){ int n; scanf("%d"…… 题解列表 2018年09月11日 0 点赞 0 评论 419 浏览 评分:0.0
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二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:10除以8的余数,倒着排列起来就是10的八进制数参考代码:#include <stdio.h>int main(){ int n,a[50],i=0,j; scan…… 题解列表 2018年08月23日 0 点赞 0 评论 519 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); printf("%o",a);return 0;}…… 题解列表 2018年08月22日 0 点赞 0 评论 469 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:用到1个函数 itoa(num,str,需要转化的进制数(例如8))把数num以8进制保存在身str中,注意事项:网页编译通不过,软件编译是可以的,16进制输出的是小写字母参考代码:#…… 题解列表 2018年06月12日 0 点赞 0 评论 465 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码)#力求简洁(-.=) 摘要:解题思路:注意事项: 转换字符是个很强大的东西哦参考代码:#include<stdio.h> int main() { int number; scanf("%d…… 题解列表 2018年06月06日 1 点赞 0 评论 796 浏览 评分: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 评论 339 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:#include <stdio.h> int main (void) { int a; scanf("%d",&a); printf("%o\n",a); return 0; …… 题解列表 2018年05月02日 0 点赞 0 评论 503 浏览 评分:0.0