码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-05-28 23:19:12      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:can   void   代码   算法   stack   turn   out   进制   imp   

题目

如题

题解

  • 十进制转八进制:数字每次对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;
	}
}

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

标签:can   void   代码   算法   stack   turn   out   进制   imp   

原文地址:https://www.cnblogs.com/coding-gaga/p/12984485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!