Look at the following method header. What type of value does the method return? public static double getValue(int a, float b, String c)
doubleWrite the header for a method named days. The method should return an int and have three int parameter variables: years, months, and weeks.
public static int days(int years, int months, int weeks)