Write the definition of a method printGrade, which has a char parameter and returns nothing. The method prints on a line by itself the message string Grade: followed by the char parameter (printed as a character) to standard output. Don't forget to put a new line character at the end of your line.

Respuesta :

Answer:

Explanation:

Based on the requirements listed in the question, writing the code in the Java Programming language would look like the following:

public static void printGrade(char x){

System.out.println("Grade: "+x);

}

Like listed in the question this method will print the the Grade followed by the char parameter that was inputted, and will end the line so that the next input starts on the next line.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.