21 23 25 27 29 31 33 35 37 39
Users Online
· Guests Online: 41
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C# Program to Print Odd Numbers in a Given Range
C# Program to Print Odd Numbers in a Given Range
This is a C# Program to generate odd numbers within a range.
Problem Description
This C# Program Generates Odd Numbers within a Range.
Problem Solution
Here Enumerable.Range generates a collection of odd numbers of a specified range. It can simplify numeric lists and drop-downs in Windows Forms program.
Program/Source Code
Here is source code of the C# Program to Generate Odd Numbers within a Range. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Caluculate the power exponent value */ using System; using System.Collections.Generic; using System.Linq; class program { static void Main(string[] args) { IEnumerable<int> oddNums = Enumerable.Range(20, 20).Where(x => x % 2 != 0); foreach (int n in oddNums) { Console.WriteLine(n); } Console.ReadLine(); } }
Program Explanation
This C# program generates odd numbers within a range. The Enumerable.Range generates a collection of odd numbers of a specified range. It can simplify numeric lists and drop-downs in Windows Forms program. Using foreach loop print the odd numbers in the range.
Runtime Test Cases
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.