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
 }