2019-05-09 19:32:54 +08:00
|
|
|
package Conversions;
|
|
|
|
|
2017-04-18 22:57:17 +08:00
|
|
|
import java.util.Scanner;
|
|
|
|
|
2020-10-24 18:23:28 +08:00
|
|
|
/** This class converts Decimal numbers to Octal Numbers */
|
2019-05-09 19:32:54 +08:00
|
|
|
public class DecimalToOctal {
|
2020-10-24 18:23:28 +08:00
|
|
|
/**
|
|
|
|
* Main Method
|
|
|
|
*
|
|
|
|
* @param args Command line Arguments
|
|
|
|
*/
|
2019-12-11 12:35:54 +08:00
|
|
|
|
2020-10-24 18:23:28 +08:00
|
|
|
// enter in a decimal value to get Octal output
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Scanner sc = new Scanner(System.in);
|
|
|
|
int n, k, d, s = 0, c = 0;
|
|
|
|
System.out.print("Decimal number: ");
|
|
|
|
n = sc.nextInt();
|
|
|
|
k = n;
|
|
|
|
while (k != 0) {
|
|
|
|
d = k % 8;
|
|
|
|
s += d * (int) Math.pow(10, c++);
|
|
|
|
k /= 8;
|
2017-04-18 22:57:17 +08:00
|
|
|
}
|
2020-10-24 18:23:28 +08:00
|
|
|
|
|
|
|
System.out.println("Octal equivalent:" + s);
|
|
|
|
sc.close();
|
|
|
|
}
|
2017-04-18 22:57:17 +08:00
|
|
|
}
|