[算法]十进制整数转八进制

Posted coding-gaga

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[算法]十进制整数转八进制相关的知识,希望对你有一定的参考价值。

题目

如题

题解

  • 十进制转八进制:数字每次对8取余下是最后一位,然后数字/8,这样依次计算,知道/8=0;借助栈得到最终八进制数。
    另:八进制转十进制:例:八进制:35=>十进制数:5*(80)+3*(81)

代码

import java.util.Scanner;
import java.util.Stack;

public class DecToOct {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int num = s.nextInt();
		int octNum = decToOct(num);
		System.out.print(octNum);
	}

	public static int decToOct(int num) {
		int tempNum = num;
		Stack<Integer> stack = new Stack<>();
		while (tempNum != 0) {
			int n = tempNum % 8;
			stack.push(n);
			tempNum /= 8;
		}

		int octNum = 0;
		while (!stack.isEmpty()) {
			int n = stack.pop();
			octNum = octNum * 10 + n;
		}
		return octNum;
	}
}


以上是关于[算法]十进制整数转八进制的主要内容,如果未能解决你的问题,请参考以下文章

java 十进制转二进制!

算法基础: 进制的转换

C语言调用函数编写把十进制整数n转换成十六进制怎么编程?

蓝桥杯——算法训练 十六进制转八进制

单链表实现十进制大整数运算。

算法leetcode1290. 二进制链表转整数(多语言实现)