Computes product of two ints. @param a Value 1 @param b Value 2 @return Product of a and b
(int a, int b)
| 11 | * @return Product of a and b |
| 12 | * */ |
| 13 | public static int product(int a, int b) { |
| 14 | return a * b; |
| 15 | } |
| 16 | |
| 17 | /** Computes sum of two ints (incorrectly). |
| 18 | * @param a Value 1 |
no outgoing calls