Advertisement
velio84

_05_DecimalToHex

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