I need help getting a static method to print a number after multiplying it
1
Expert's answer
2016-02-25T00:00:54-0500
/** * Multiplies two values and prints result * @param a the first value * @param b the second value */ public static void multiplyAndPrint(double a, double b) { System.out.println(a * b); }
Comments
Leave a comment