Advertisement
coasterka

#2ConvertDecToHex

May 13th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class ConvertDecToHex {
  3.     public static void main(String[] args) {
  4.         Scanner scan = new Scanner(System.in);
  5.         int number = scan.nextInt();
  6.         System.out.format(("%h").toUpperCase(), number);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement