Advertisement
Guest User

05.DecimalToHex

a guest
May 12th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3.  
  4. public class DecimalToHex {
  5.  
  6.     public static void main(String[] args) {
  7.             Scanner input = new Scanner(System.in);
  8.             int number = input.nextInt();
  9.             String hex = Integer.toHexString(number);
  10.             System.out.println(hex.toUpperCase());
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement