Answers for "c# add new array for loop"

C#
8

use a for loop to sum an array c#

int[] arr = new int[] { 1, 2, 3 };
int sum = 0;
for (int i = 0; i < arr.Length; i++)
{
    sum += arr[i];
}

int[] arr = { 3, 6, 4, 1, 6, 8 };

// returns 1
Array.IndexOf(arr, 6);

int maxValue = anArray.Max();
int maxIndex = anArray.ToList().IndexOf(maxValue);
Posted by: Guest on July-19-2020
1

append an array in c#

int[] terms = new int[400];
for (int runs = 0; runs < 400; runs++)
{
    terms[runs] = value;
}
Posted by: Guest on March-28-2021

C# Answers by Framework

Browse Popular Code Answers by Language