Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRaymond Yau
811 PointsTry Catch conditions - what's wrong with this?
Hi.
Seems to keep saying that I have to set the conditions for the value to be less than 0 or greater than 20, which is done. Why is this not working?
Cheers.
EDITED CODE:
int value = int.Parse(Console.ReadLine());
try
{
if (value < 0 || value > 20)
{
throw new System.Exception();
}
Console.WriteLine(string.Format("You entered {0}",value));
}
catch
{
Console.WriteLine("Value is out of range");
}
2 Answers
Patrik Horváth
11,110 Pointstry and catch on WriteLine ? it have no sense :)
try fix it :)
try think little bit so user write input and its converted to INT so logic tell me aha this part should be in TRY and i should CATH Exception
Raymond Yau
811 PointsI've given this another go and I updated the code. I think I'm annoyingly close to the solution but I simply don't understand why it's not working. I'm pretty sure I got the logic right.