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

What do I have to change my code to?

The input I and catch causing errors

Program.cs
using System;

namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {
            Console.Write("Enter the number of times to print \"Yay!\": ");
            string input = Console.ReadLine();
            try
            {
            int count = int.Parse(input);
            }
            catch(FormatException)
            {
            int i = 0;
                Console.WriteLine("You must enter a whole number.");
            }
            while(i < count)
            {
                i += 1;   
                Console.WriteLine("Yay!");
            }
        }
    }
}

One issue is that you are declaring i in the catch method then trying to call it in the while loop. The same goes for declaring count in try and calling it in the while loop. Try making them global variables by adding them above the Console.Write() method.

1 Answer

Dario Bahena
Dario Bahena
10,697 Points

What you want to do is wrap all of the code that is provided inside of main in a try catch. What this means is that all of that code goes in try and catch is left with the logging statement if an exception is thrown.

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.");
            }
        }
    }
}