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

Michael Fitzgerald
Michael Fitzgerald
7,006 Points

SOLVED: Compilation error: Unexpected Symbol

I don't know what I'm doing wrong, to my knowledge this code is correct, yet I keep running into this error that I have an unexpected symbol ')' (10,39). I've removed all the parenthesis on just about every line and I am just missing it, can anyone else take a look?

Program.cs
using System;

namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {
            Console.Write("Enter the number of times to print \"Yay!\": ");
            var entry = int.Parse(Console.ReadLine());
            int i;
            for(i=0; i< entry; i+=)
            {
                Console.WriteLine("Yay!");
            }



        }
    }
}

Edit: Ok thanks, I don't know why I didn't see that one earlier

1 Answer

Steven Parker
Steven Parker
231,108 Points

:point_right: Your for expression is incomplete.

You wrote "i+=" for the increment clause of your for expression, which is an incomplete statement.

It's not clear if you intended to write "i+=1" or "i++", but either would work.