mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-14 17:32:35 +08:00
Rename OctalToDecimal.java to Conversions/OctalToDecimal.java
This commit is contained in:
34
Conversions/OctalToDecimal.java
Normal file
34
Conversions/OctalToDecimal.java
Normal file
@ -0,0 +1,34 @@
|
||||
import java.util.Scanner;
|
||||
|
||||
/**
|
||||
* Converts any Octal Number to a Decimal Number
|
||||
*
|
||||
* @author Zachary Jones
|
||||
*
|
||||
*/
|
||||
public class OctalToDecimal {
|
||||
|
||||
/**
|
||||
* Main method
|
||||
*
|
||||
* @param args Command line arguments
|
||||
*/
|
||||
public static void main(String args[]) {
|
||||
Scanner sc = new Scanner(System.in);
|
||||
int o = sc.nextInt();
|
||||
System.out.println("Decimal equivalent: " + convertOctalToDecimal(o));
|
||||
sc.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method converts an octal number to
|
||||
* a decimal number.
|
||||
*
|
||||
* @param o The octal number
|
||||
* @return The decimal number
|
||||
*/
|
||||
public static int convertOctalToDecimal(int o) {
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user