Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Indexing Practice | Arrays
C# Basics
course content

Зміст курсу

C# Basics

Indexing Practice

Find the mean between the largest and the smallest element of the numbers array.

Mean, also called average, represents the central number between two or more than two numbers. For-example the mean value between 1 and 5 is 3.

The formula for finding mean between two numbers sum of the two numbers divided by 2: (num1 + num2) / 2

Use indexing to access the smallest and the largest elements of the array.

cs

main

  1. The sum variable should contain the sum of the two values.
  2. Figure out the index of the smallest and the largest elements of the numbers array and access those elements via indexing (numbers[index]), then store their sum in the sum variable.
  3. The mean will be the sum divided by 2.
cs

main

Все було зрозуміло?

Секція 5. Розділ 4
We're sorry to hear that something went wrong. What happened?
some-alt