C# 程序查找序列的和


首先,设置一个序列。

List<int> myList = new List<int> { 1, 2, 3, 4 ,5};

现在使用可查询的 Sum() 方法来查找总和。

myList.AsQueryable().Sum();

示例

 在线演示

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> myList = new List<int> { 1, 2, 3, 4 ,5};
      Console.WriteLine("Sum of elements in a list...");
      foreach (int res in myList) {
         Console.WriteLine(res);
      }
      int sum = myList.AsQueryable().Sum();
      Console.WriteLine("Sum = {0}", sum);
   }
}

输出

Sum of elements in a list...
1
2
3
4
5
Sum = 15

更新日期: 2020 年 6 月 23 日

515 次浏览

开启您的职业

通过完成本课程获得认证

开始
广告