about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/Kary.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/1/Kary.java')
-rw-r--r--usth/ICT2.2/labwork/1/Kary.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/1/Kary.java b/usth/ICT2.2/labwork/1/Kary.java
new file mode 100644
index 0000000..51fd9af
--- /dev/null
+++ b/usth/ICT2.2/labwork/1/Kary.java
@@ -0,0 +1,22 @@
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+class Kary
+{ 
+  private static final char[] DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7',
+                                        '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
+
+  public static void main(String... args)
+  { 
+    int n = Integer.parseInt(args[0]);
+    List<Character> result = new ArrayList<Character>();
+    for (int k = Integer.parseInt(args[1]); n > 0; n /= k)
+      result.add(DIGITS[n % k]);
+
+    Collections.reverse(result);
+    for (char d : result)
+      System.out.print(d);
+    System.out.println();
+  }
+}