Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Prática de Indexação | Arrays
Noções Básicas de C#
course content

Conteúdo do Curso

Noções Básicas de C#

Noções Básicas de C#

1. Começando
2. Lidando com Tipos de Dados
3. Estruturas de Controle
4. Loops
5. Arrays
6. Métodos

book
Prática de Indexação

Encontre a média entre o maior e o menor elemento do array numbers.

A média, também chamada de média aritmética, representa o número central entre dois ou mais números. Por exemplo, o valor médio entre 1 e 5 é 3.

A fórmula para encontrar a média entre dois números é a soma dos dois números dividida por 2: (num1 + num2) / 2

Use indexação para acessar os menores e maiores elementos do array.

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

cs

main

copy
1234567891011121314151617
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { int[] numbers = { 5, 9, 27, 17, 19, 21, 0, -7, 10 }; int sum = ___; int mean = ___; Console.WriteLine(mean); } } }
  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

copy
1234567891011121314151617
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { int[] numbers = { 5, 9, 27, 17, 19, 21, 0, -7, 10 }; int sum = numbers[2] + numbers[7]; int mean = sum / 2; Console.WriteLine(mean); } } }
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 5. Capítulo 4
We're sorry to hear that something went wrong. What happened?
some-alt