nafis nibir 6 years ago
parent
commit
6ef909f1ac
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Operations.java

+ 4
- 0
Operations.java View File

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