DEADSOFTWARE

Добавлены типы разных размеров
[dsw-obn.git] / rtl / Out.java
index ca773d2c167f858dc7def8fd7d72977e57233791..309578afe881cccdb7078a6bc2cdca151fcb0bf8 100644 (file)
@@ -7,7 +7,7 @@ public class Out
 
        }
 
-       public static void Int(int i, int n)
+       public static void Int(long i, long n)
        {
                System.out.print(i);
        }
@@ -17,6 +17,11 @@ public class Out
                System.out.print(x);
        }
 
+       public static void LongReal(double x, int n)
+       {
+               System.out.print(x);
+       }
+
        public static void Ln()
        {
                System.out.println();