nafis nibir пре 6 година
родитељ
комит
6ef909f1ac
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4
    0
      Operations.java

+ 4
- 0
Operations.java Прегледај датотеку

@@ -30,4 +30,8 @@ public class Operations {
30 30
     public static int multiply(int x, int y) {
31 31
         return x * y;
32 32
     }
33
+    
34
+    public static int divide(int x, int y){
35
+        return x/y;
36
+    }
33 37
 }