Browse Source

Commiting updated code with divide method

Allison Ziegler 6 years ago
parent
commit
8744173cbb
3 changed files with 22 additions and 0 deletions
  1. BIN
      Operations.class
  2. 15
    0
      Operations.ctxt
  3. 7
    0
      Operations.java

BIN
Operations.class View File


+ 15
- 0
Operations.ctxt View File

@@ -0,0 +1,15 @@
1
+#BlueJ class context
2
+comment0.target=Operations
3
+comment1.params=x\ y
4
+comment1.target=int\ add(int,\ int)
5
+comment1.text=\n\ The\ addition\ function.\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ the\ sum\ of\ x\ and\ y\n
6
+comment2.params=x\ y
7
+comment2.target=int\ subtract(int,\ int)
8
+comment2.text=\n\ The\ subtraction\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ y\ taken\ from\ x\n
9
+comment3.params=x\ y
10
+comment3.target=int\ multiply(int,\ int)
11
+comment3.text=\n\ The\ multiplication\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ x\ times\ y\n
12
+comment4.params=x\ y
13
+comment4.target=int\ divide(int,\ int)
14
+comment4.text=\n\ Adding\ my\ divide\ function\!\n
15
+numComments=5

+ 7
- 0
Operations.java View File

@@ -30,4 +30,11 @@ public class Operations {
30 30
     public static int multiply(int x, int y) {
31 31
         return x * y;
32 32
     }
33
+    
34
+    /**
35
+     * Adding my divide function!
36
+     */
37
+    public static int divide(int x, int y) {
38
+        return x / y;
39
+    }
33 40
 }