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

Help !! I am hitting the wall !! i can not get it to print.

I am hitting the wall !! i can not get it to print.

using System;

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

        try
        {
            int totals = int.Parse(times);
            while (counter < totals)
            {
                Console.WriteLine("Yey!");
                counter ++;
            }
        }
        catch (FormatException)
       {
            Console.WriteLine("Yay!");
        }
        if (counter <= 0)
        {
            Console.WriteLine("Yay!");

        }
    }
}

}

Program.cs
using System;

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

            try
            {
                int totals = int.Parse(times);
                while (counter < totals)
                {
                    Console.WriteLine("Yey!");
                    counter ++;
                }
            }
            catch (FormatException)
           {
                Console.WriteLine("Yay!");
            }
            if (counter <= 0)
            {
                Console.WriteLine("Yay!");

            }
        }
    }
}

2 Answers

Steven Parker
Steven Parker
229,732 Points

I notice 3 issues with this code:

  • when the input is valid, you should print "Yay!" (with an "a"), not "Yey!" (with an "e")
  • when the input is invalid, you must print"You must enter a whole number.", not "Yay!"
  • you also have an extra test and print after the catch which is not part of the challenge

I believe you need to add "using System.IO" to the using directives (i.e. under where it says "using System").

Steven Parker
Steven Parker
229,732 Points

No, there's nothing in this challenge that references the System.IO namespace.