0
Chess Tournament - Introduction to C#
My code below is not producing any output. How do I modify the code to correct it? using System; public class Program { static void Main(string[] args) { int wins; int ties; //your code goes here wins = Convert.ToInt32(Console.Readline()); ties = Convert.ToInt32(Console.Readline()); Console.WriteLine(wins + 0.5*ties); } }
2 Answers
+ 5
Console.ReadLine()
with capital L
+ 2
Thank you so much!