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 Basic Algorithm Exercises: Create a new list from a given list of integers where each integer value is added to 2 and the result value is multiplied by 5


C# Sharp Basic Algorithm: Exercise-145 with Solution

Write a C# Sharp program to create a new list from a given list of integers where each integer value is added to 2 and the result value is multiplied by 5.

Sample Solution:

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {            
           List<int> mylist = test(new List<int>(new int[] { 1, 2, 3 , 4 }));                  
           foreach(var i in mylist)
            {
               Console.Write(i.ToString()+" ");
            }     
        }                  
        public static List<int> test(List<int> nums)
          {
            IEnumerable<int> e = nums.Select(x => 5 * (x + 2));
            return e.ToList();
          }    
    } 
}

Sample Output:

15 20 25 30

Flowchart:

C# Sharp: Flowchart: Create a new list from a given list of integers where each integer value is added to 2 and the result value is multiplied by 5.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new list from a given list of strings where each element is replaced by 4 copies of the string concatenated together.
Next: Write a C# Sharp program to create a new list of the rightmost digits from a given list of positive integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.