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 trial

C# C# Basics (Retired) Perfect Final

My code won't work I get this error error CS0139: No enclosing loop out of which to break or continue plz help.

Help

Program.cs
using System;

namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {
            try{
            Console.Write("Enter the number of times to print \"Yay!\": ");
            string input = Console.ReadLine();

            int count = int.Parse(input);

            int i = 0;
            while(i < count)
            {
                i += 1;   
                Console.WriteLine("Yay!");
            }

            }catch (FormatException){
                Console.WriteLine("You must enter a whole number.");
                continue;
            }



            }     
    }
}

1 Answer

Steven Parker
Steven Parker
229,783 Points

That's actually a pretty good error message. It's referring to the "continue" statement in the "catch" area.

A "continue" is only allowed in a loop, and this part of the code is not inside of a loop. It doesn't appear anything more needs to be done once the error message is given, so since that's the end of the program anyway that 'continue" line can be simply deleted.