码迷,mamicode.com
首页 > 其他好文 > 详细

八进制

时间:2017-06-24 22:49:22      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:app   oid   static   build   ati   auth   blog   change   nbsp   

import java.util.Scanner;

/**
 * 输入一个整数,将其转换成八进制数输出
 * 
 * @author kif
 *
 */
public class Octal {

	public static void exchange(int number) {
		StringBuilder strBui = new StringBuilder();
		while (number > 0) {
			strBui.append(number % 8);
			number /= 8;
		}
		System.out.println(strBui.reverse().toString());
	}

	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		while(true){
			System.out.println("请输入一个整数:");
			int number = input.nextInt();
			Octal.exchange(number);
		}
	}

}

 

八进制

标签:app   oid   static   build   ati   auth   blog   change   nbsp   

原文地址:http://www.cnblogs.com/kongkongFabian/p/7074631.html

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