Small partners, according to the knowledge, refer to the comments, the code Editor in the code to complement the complete, to achieve the score bonus function.
function Description: add points for the specified scores until the score is greater than or equal to 60, output the score before and after the addition score, and count the number of bonus points
Operating effect:
-------------------------------------------------------------------------------------
Public class HelloWorld {
public static void Main (string[] args) {
//variable save score
int score = 53;
//Variable save bonus number of times
int count = 0;
//PrintOut score pre-score
System.out.println ("Pre-score" +score);
//As long as the score is less than 60, the loop performs the add-on operation and counts the number of points
while (score <60) {
score++;
count++;
}
Print output plus score, plus number of points
System.out.println ("Bonus score after" +score);
System.out.println ("A total of" +count+ "Times");
}
}
Achieve------count of score plus function