Q:

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

0

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

Expected Output:
The numbers within the range of 1 to 11 are :
1 3 6 9 10

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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");			
    }  
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now