How to generate a sequence of math calculation numbers using Linq in C#

1 Answer

0 votes
using System;
using System.Linq;

class Program
{
    static void Main() {
        var result = Enumerable.Range(1, 10).Select(e => Math.Pow(e, 3));
        
        Console.WriteLine(string.Join(", ", result));
    }
}
   
   
   
   
/*
run:
      
1, 8, 27, 64, 125, 216, 343, 512, 729, 1000
    
*/

 



answered Jul 6, 2023 by avibootz

Related questions

1 answer 104 views
2 answers 115 views
2 answers 173 views
1 answer 120 views
1 answer 93 views
...