2017-04-18 22:57:17 +08:00
|
|
|
import java.util.Scanner;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class converts Decimal numbers to Octal Numbers
|
|
|
|
*
|
|
|
|
* @author Unknown
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class Decimal_Octal
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Main Method
|
|
|
|
*
|
|
|
|
* @param args Command line Arguments
|
|
|
|
*/
|
|
|
|
public static void main(String[] args)
|
|
|
|
{
|
|
|
|
Scanner sc=new Scanner(System.in);
|
|
|
|
int n,k,d,s=0,c=0;
|
2017-04-21 02:56:21 +08:00
|
|
|
System.out.print("Decimal number: ");
|
2017-04-18 22:57:17 +08:00
|
|
|
n=sc.nextInt();
|
|
|
|
k=n;
|
|
|
|
while(k!=0)
|
|
|
|
{
|
|
|
|
d=k%8;
|
|
|
|
s+=d*(int)Math.pow(10,c++);
|
|
|
|
k/=8;
|
|
|
|
}
|
2017-04-21 02:56:21 +08:00
|
|
|
|
2017-04-18 22:57:17 +08:00
|
|
|
System.out.println("Octal equivalent:"+s);
|
2017-04-21 02:56:21 +08:00
|
|
|
sc.close();
|
2017-04-18 22:57:17 +08:00
|
|
|
}
|
|
|
|
}
|