about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/Binary.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/1/Binary.java')
-rw-r--r--usth/ICT2.2/labwork/1/Binary.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/1/Binary.java b/usth/ICT2.2/labwork/1/Binary.java
new file mode 100644
index 0000000..3573a35
--- /dev/null
+++ b/usth/ICT2.2/labwork/1/Binary.java
@@ -0,0 +1,14 @@
+class Binary
+{
+  public static void main(String... args)
+  {
+    int n = Integer.parseInt(args[0]);
+    String s = "";
+    while (n > 0)
+      {
+        s = (n % 2) + s;
+        n >>= 1;
+      }
+    System.out.println(s);
+  }
+}