Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Using multiple WHERE clause to find the positive numbers within the list

C# Sharp LINQ : Exercise-2 with Solution

Write a program in C# Sharp to find the positive numbers from a list of numbers using two where conditions in LINQ Query.

Sample Solution:-

C# Sharp Code:

using System;  
using System.Linq;
  
class LinqExercise2  
    {  
        static void Main()  
        {  
            int[] n1 = {  
                1, 3, -2, -4, -7, -3, -8, 12, 19, 6, 9, 10, 14  
            };  

            Console.Write("\nLINQ : Using multiple WHERE clause to find the positive numbers within the list : "); 
            Console.Write("\n-----------------------------------------------------------------------------");
		
            var nQuery = 
			from VrNum in n1 
			where VrNum > 0 
			where VrNum < 12 
			select VrNum;  
            Console.Write("\nThe numbers within the range of 1 to 11 are : \n");			
            foreach(var VrNum in nQuery) 
            {			
               Console.Write("{0}  ", VrNum); 
            }
         Console.Write("\n\n");			
    }  
}
 

Sample Output:

LINQ : Using multiple WHERE clause to find the positive numbers within the list :                                  
-----------------------------------------------------------------------------                                 
The numbers within the range of 1 to 11 are :                                                                 
1  3  6  9  10 

Flowchart:

Flowchart: LINQ : Using multiple WHERE clause to find the positive numbers within the list

C# Sharp Practice online:

Contribute your code and comments through Disqus.

Previous: Write a program in C# Sharp to shows how the three parts of a query operation execute.
Next: Write a program in C# Sharp to find the number of an array and the square of each number which is more than 20.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.