Answer:Console.WriteLine("Enter the number of contestants in last year's competition: ");
int lastYearContestants = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the number of contestants in this year's competition: ");
int thisYearContestants = int.Parse(Console.ReadLine());
Console.WriteLine("Last year's competition had " + lastYearContestants + " contestants" + ", and this year's has " + thisYearContestants + " contestants.");
int revenue = thisYearContestants * 25;
Console.WriteLine("Revenue expected this year is $" + revenue + ".00");
if (thisYearContestants > lastYearContestants)
Console.WriteLine("It is True that this year's competition is bigger than last year's.");
else
Console.WriteLine("It is False that this year's competition is bigger than last year's");
Step-by-step explanation:
This will out put the correct sentences and gives the revenue in the correct format.