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 110 views
2 answers 120 views
2 answers 183 views
1 answer 127 views
1 answer 99 views
...