12345678910111213141516171819202122232425262728293031 |
-
-
-
- public class IntegerPrinter {
-
- public String printIntegerAsBinary(int value){
-
- String strBinary = Integer.toBinaryString(value);
- return strBinary;
-
- }
-
- public String printIntegerAsOctal(int value){
-
- String strOctal = Integer.toOctalString(value);
- return strOctal;
-
- }
-
- public String printIntegerAsHexadecimal(int value){
-
- String strHexa = Integer.toHexString(value);
- return strHexa;
- }
-
- public static void main(String[] args){
- IntegerPrinter intPrint = new IntegerPrinter();
-
- }
- }
|