小孙


私信TA

用户名:2409244461

访问量:9550

签 名:

这是一个废物

等  级
排  名 294
经  验 5625
参赛次数 1
文章发表 40
年  龄 19
在职情况 学生
学  校 河南工业职业技术学院
专  业 软件技术

  自我简介:

参考代码:

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        String str = "";
        while (a>0){
        // 这里要注意一下  如果定义的是 str += a%2+str的话 最后要倒叙输出str。
        // 因为用除商取余求出来的是数是反过来的,所以直接 a%8 + str 就可以了
            str = a%8+str;
            a /= 8;
        }
        System.out.println(str);
    }
 }


 

0.0分

1 人评分

  评论区

想要转为16进制的
2021-06-18 21:21:04
  • «
  • 1
  • »