Rename OctalToDecimal.java to Conversions/OctalToDecimal.java

This commit is contained in:
James Mc Dermott
2017-04-27 15:23:09 +01:00
committed by GitHub
parent 8c78d90d49
commit 97b748012c

View 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) {
}
}