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

Final code challenge 3 of 3 - "I entered -1 but nothing is printing out" ???

What am I missing??

Program.cs
using System;
namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {
            var total = 0;

            Console.Write("Enter the number of times to print \"Yay!\": ");
            var entry = Console.ReadLine();
            try
            {
                var times = int.Parse(entry);
                while (total < times)
                {
                    total += 1;
                    Console.WriteLine("Yay!");
                }
            }
            catch (FormatException)
            {
                Console.WriteLine("You must enter a whole number.");

            }
        }
    }
}

I know I have to tell the user to input a positive number, but where do I put that?

1 Answer

Steven Parker
Steven Parker
231,108 Points

Check the value after it has been parsed.

As soon as you have parsed the input into a number, you can test the number with an if statement to be sure it is not negative. If it is, you can print out the appropriate message (as given in the challenge) and end the program.

Thank you!