Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class DecimalToHex {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- int number = input.nextInt();
- String hex = Integer.toHexString(number);
- System.out.println(hex.toUpperCase());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement