(int x, int y)
| 11 | public boolean flag = false; |
| 12 | private int n = 0; |
| 13 | public int multiply(int x, int y) { |
| 14 | int total = 0; |
| 15 | for(int i = 0; i < x; i++) |
| 16 | total = add(total, y); |
| 17 | return total; |
| 18 | } |
| 19 | public int fortySeven() { return 47; } |
| 20 | private int add(int x, int y) { |
| 21 | return x + y; |