rite a method with the following header:
public static void showGradeDistribution(int a, int b, int c,int d,
int f)
It should print a graph (using asterisks) for each of theletters entered in the reverse order of the
parameter list and with a label. In addition, if A and B gradessum is equal or exceeds that of grades C
and D and F, the message “Strong class!†should be displayed.For example a method call of:
showGradeDistribution(5,7,4,4,3);
Would print:
A: *****
B: *******
C: ****
D: ****
F: ***
Strong clas