20 Aralık 2020 Pazar

C# Tuple İle Geriye Çoklu Değer Döndürme

 using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApp37

{

    class Program

    {

        public static(int i,int t) NotTopla(IEnumerable<int>notları)

        {

            int i = 0, t = 0;

            foreach(var not in notları)

            {

                i++;

                t += not;

            }

            return (i, t);

        }

        static void Main(string[] args)

        {

            var notlar = new[] { 90, 60, 80, 70 };

            var nothesapla = NotTopla(notlar);

            Console.WriteLine("Ortalama="+(nothesapla.t/nothesapla.i));

            Console.ReadLine();

        }

    }

}


Hiç yorum yok:

Yorum Gönder