Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write the function prototype (1 line) for a function named findMinimumGrade that

ID: 3672758 • Letter: W

Question

Write the function prototype (1 line) for a function named findMinimumGrade that expects 3 integers and returns the smallest one.

Write the function prototype (1 line) for a function named printInitials that expects 3 characters and prints them to the screen.

Write the function prototype (1 line) for a function named directionsToQuincyCollege that simply prints the directions to Quincy College in Plymouth (from the highway) to the screen.

Write the function prototype (1 line) for a function named findAreaOfCircle that expects 1 double and returns the area of a circle

Write the function prototype (1 line) for a function named calulateMileage that expects 2 doubles and returns the calculated mileage

Explanation / Answer

Answer for Question 1:
int findMinimumGrade(int , int , int);

Answer for Question 2:
void printInitials(char , char , char);

Answer for Question 3:
void directionsToQuincyCollege ();

Answer for Question 4:

double findAreaOfCircle(double );

Answer for Question 5:

double calculateMilegae(double, double);