0
The task is called "who wins". Please help find the bug.
This is my code static void Main(string[] args) { string[] finalists = { "James Van", "John Smith", "Leyla Brown", "Tom Homerton", "Bob Douglas" }; int winner = Convert.ToInt32(Console.ReadLine()); //выведите победителя и фразы "Game Over" FinalRound finalRound = new FinalRound(finalists, winner); } } class FinalRound { public FinalRound(string[] finalists, int winner) { //завершите конструктор Console.WriteLine("Winner is " + finalists[winner]); } ~FinalRound(){ Console.WriteLine("Game over"); } //создайте деструктор => "Game Over" }
12 Antworten
+ 3
I am just guessing like the others:
It looks like you are supposed to output "Game Over", but you output "Game over" with small 'o'. Maybe that's the reason?
#GetInDreamCodingShape
+ 2
You're welcome 🙂
+ 1
Doesn't seem to have any problems when I run it, what is it that you expect it to behave?
+ 1
Did you check if there's extra or missing { }?
+ 1
If you can share the question it will be easy to find what exactly it asks for . Otherwise you can wait for a pro person to answer you.
+ 1
Thank you so much
+ 1
Thus, we check the Result as we check the ways to create a function cout << "hello world! ";
Allowed ;
0
You can just ask for help from code coach helpers .
0
Nick, As a result, everything is correctly deduced, but writes that there is a mistake
0
yeah, I checked it out
0
Founded error, or it should be like that... You don't set the FinalRound to void.
0
GDSHNIK
I don't see void anywhere near FinalRound