A local gaming club is writing a program to calculate a player's final tournament score across three rounds of play.
If a player receives any rules warnings during their matches, their final score is reduced.
Write a C# program to calculate the final tournament score.
You should assume that three integer variables called round1, round2, and round3 have already been declared and assigned values representing the scores of the three individual rounds.
Your program should:
You should use meaningful variable names and correct C# syntax in your answer.