Vetores

1089 palavras 5 páginas
EXERCICIO 1 using System; using System.Collections.Generic; using System.Linq; using System.Text;

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) {

Relacionados

  • Vetores
    2119 palavras | 9 páginas
  • Vetores
    1454 palavras | 6 páginas
  • Vetores
    1153 palavras | 5 páginas
  • vetores
    2198 palavras | 9 páginas
  • Vetores
    1878 palavras | 8 páginas
  • Vetor
    1629 palavras | 7 páginas
  • Vetores
    1392 palavras | 6 páginas
  • vetores
    976 palavras | 4 páginas
  • vetores
    2722 palavras | 11 páginas
  • Vetores
    1956 palavras | 8 páginas