Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created March 1, 2021 11:53
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/a09eb0b3bf54ef08529e423d14d31f1c to your computer and use it in GitHub Desktop.
Save Alkimisti/a09eb0b3bf54ef08529e423d14d31f1c to your computer and use it in GitHub Desktop.
public class Hexadecimal2Decimal {
public static void main(String[] args) {
String hex = "ff";
int dec = Integer.parseInt(hex, 16);
System.out.println(dec);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment