瀏覽代碼

Xzavia Lab

Xzavia Cuello 6 年之前
父節點
當前提交
c0515dc513
共有 2 個文件被更改,包括 14 次插入1 次删除
  1. 二進制
      Operations.class
  2. 14
    1
      Operations.java

二進制
Operations.class 查看文件


+ 14
- 1
Operations.java 查看文件

@@ -19,7 +19,6 @@ public class Operations {
19 19
     public static int subtract(int x, int y) {
20 20
         return x - y;
21 21
     }
22
-    
23 22
 
24 23
     /**
25 24
      * The multiplication function
@@ -29,5 +28,19 @@ public class Operations {
29 28
      */
30 29
     public static int multiply(int x, int y) {
31 30
         return x * y;
31
+
32
+    }
33
+
34
+    public static int divide(int x, int y) {
35
+        return x / y;
36
+
32 37
     }
33 38
 }
39
+/**
40
+ * An example of a method - replace this comment with your own
41
+ *
42
+ * @param  y  a sample parameter for a method
43
+ * @return    the sum of x and y
44
+ */
45
+
46
+