79082873

Date: 2024-10-13 10:10:14
Score: 1.5
Natty:
Report link
int UserInput = (Convert.ToInt32(Console.ReadLine())); 

Should be

int UserInput = int.Parse(Console.ReadLine());
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lyubomir Lalov