w3resource

C#: Create a new list from a given list of integers removing those values end with 7


C# Sharp Basic Algorithm: Exercise-150 with Solution

Write a C# Sharp program to create a list from a given list of integers, removing all values ending in 7.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new list from a given list of integers removing those values end with 7.

Sample Solution:-

C# Sharp Code:

using System; // Importing the System namespace for basic functionality
using System.Collections.Generic; // Importing the namespace for working with collections
using System.Linq; // Importing the namespace for LINQ operations

namespace exercises // Defining a namespace called 'exercises'
{
    class Program // Defining a class named 'Program'
    {
        static void Main(string[] args) // The entry point of the program
        {
            // Calling the 'test' method with a new list of integers as input
            List<int> mylist = test(new List<int>(new int[] { 10, 22, 35, 47, 53, 67 }));

            // Displaying elements of 'mylist' in the console
            foreach(var i in mylist)
            {
                Console.Write(i.ToString()+" "); // Output each element followed by a space
            }     
        }

        // Method that filters a List of integers to include only those whose last digit is less than 7
        public static List<int> test(List<int> nums)
        {
            // Using LINQ to filter 'nums' list and select elements whose last digit is less than 7
            return nums.Where(n => n % 10 < 7).ToList();
        }    
    } 
}

Sample Output:

10 22 35 53

Flowchart:

C# Sharp: Flowchart: Create a new list from a given list of integers removing those values end with 7.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to remove all "a" in each string in given list of strings and return the new string.
Next: C# Sharp Data Types Exercises Home

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/csharp-exercises/basic-algo/csharp-basic-algorithm-exercises-150.php