How to generate the first 100 Odd Numbers using C#?


To generate first 100 odd numbers, set a for loop from 1 to 100.

for(val = 1; val <l= 100; val++) {}

Under the loop, set the condition for odd numbers i.e. if the mod 2 of a number is not equal to 0, then it is an odd number.

for(val = 1; val <= 100; val++) {
   if(val%2 != 0) {
      Console.WriteLine(val);
   }
}

The following is the complete example −

Example

 Live Demo

using System;
class Program {
   static void Main() {

      int val;
      for(val = 1; val <= 100; val++) {
         if(val%2 != 0) {
            Console.WriteLine(val);
         }
      }
   }
}

Updated on: 22-Jun-2020

436 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements