Vetores
namespace ListaVetores
{
class Exerc1 { static void Main(string[] args) { int[] vet = new int[10]; int soma = 0, p; double media;
for (p = 0; p <= 9; p++) { Console.Write("vet[{0}]=", p); vet[p] = int.Parse(Console.ReadLine()); soma += vet[p]; }
media = (double)soma / 10; Console.WriteLine("Média={0}", media);
} }
}
EXERCICIO 2 using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ListaVetores
{
class Exerc2 { static void Main(string[] args) { bool[] vet = new bool[5]; int p, True=0;
for (p = 0; p <= 4; p++) { Console.Write("vet[{0}]=", p); vet[p] = bool.Parse(Console.ReadLine()); if (vet[p] == true) True++; } Console.WriteLine("Verdadeiros={0}", True); } }
}
EXERCICIO 3 using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ListaVetores
{
class Exerc3 { static void Main(string[] args) { bool[] vet = new bool[5]; int p, True = 0;
for (p = 0; p <= 4; p++) { Console.Write("vet[{0}]=", p); vet[p] = bool.Parse(Console.ReadLine()); if (vet[p] == true && vet[p - 1] == true) True++; } Console.WriteLine("Verdadeiros={0}", True); } }
}
EXERCICIO 4
…
namespace ListaVetores
{
class Exerc4 { static void Main(string[] args) {