Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created March 1, 2021 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/1128b77090884c0389f85187fb8cfe36 to your computer and use it in GitHub Desktop.
Save Alkimisti/1128b77090884c0389f85187fb8cfe36 to your computer and use it in GitHub Desktop.
public class Octal2Decimal {
public static void main(String[] args) {
String octal = "123";
int dec = Integer.parseInt(octal, 8);
System.out.println(dec);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment