用 C# 编写程序查找列表中元素的立方


使用 Select 方法和 Lambda 表达式计算元素的立方。

以下为我们的列表。

List<int> list = new List<int> { 2, 4, 5, 7 };

现在,使用 Select() 方法并计算立方。

list.AsQueryable().Select(c => c * c * c);

以下是完整示例。

示例

 现场演示

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> list = new List<int> { 2, 4, 5, 7 };
      Console.WriteLine("Elements...");
      // initial list javascript:void(0)
      foreach (int n in list)
      Console.WriteLine(n);
      // cube of each element
      IEnumerable<int> res = list.AsQueryable().Select(c => c * c * c);
      Console.WriteLine("Cube of each element...");
      foreach (int n in res)
      Console.WriteLine(n);
   }
}

输出

Elements...
2
4
5
7
Cube of each element...
8
64
125
343

更新日期:2020 年 6 月 23 日

482 次浏览

开启你的职业生涯

完成课程以获得认证

开始
广告