Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
test linq select
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int mul = 4; //умножитель List<int> a = new List<int> { 1, 2, 3, 4, 5, 6, 7 }; //умножим все элементы списка на mul и есил это меньше 20 обнулим //на выходе получим новый список b var b = a.Select(i => { int tmp = i*mul; //использование локальной переменной mul метода Main if (tmp < 20) return 0; else return tmp; } ); foreach(var i in a) Console.Write("{0} ",i); Console.WriteLine(""); foreach(var i in b) Console.Write("{0} ",i); } } }
run
|
edit
|
history
|
help
0
a
vjghfgh
cs001
asxsadaxsdf
eze
www
linked list (add to end and beginning, and looking for cycles based on Floyd's algorithm)
money
test
expresiones switch