Please help me with the task: Odd checker .

Hello, I’m working on this task:

Write a program that outputs all odd numbers between 100 and 200.

Here is my code:


namespace ForLoops
{
   class Odd
   {
       static void Main(string[] args)
       {
           for (int i = 100; i < 200; i++)
           {
               Console.WriteLine(i);
           }
       }
   }
}


Can anyone please help me to solve it?