Resposta do primeiro exercicio 1
Poderia ter feito de outra maneira deixei para facil entendimento.
int[] informatica = new int[]{3,10,6,12};
int[] matematica = new int[] { 2, 4, 20, 11 };
int[] historia = new int[] { 15, 21, 19, 8 };
int[] arquivoGeral = new int[informatica.Length + matematica.Length + historia.Length];
int aux = 0;
int numIndiceVetorGeral = 0;
//Varrer todos os vetores e joga os valores no vetor geral
foreach (var itemInformatica in informatica)
{
arquivoGeral[numIndiceVetorGeral] = itemInformatica;
numIndiceVetorGeral++;
}
foreach (var itemMatematica in matematica)
{
arquivoGeral[numIndiceVetorGeral] = itemMatematica;
numIndiceVetorGeral++;
}
foreach (var itemHistoria in historia)
{
arquivoGeral[numIndiceVetorGeral] = itemHistoria;
numIndiceVetorGeral++;
}
//Ordena o vetor já com todos os codigos do livro
for (int k = 0; k < arquivoGeral.Length; k++)
{
for (int kk = 0; kk < arquivoGeral.Length; kk++)
{
if (arquivoGeral[k] < arquivoGeral[kk])
{
aux = arquivoGeral[k];
arquivoGeral[k] =arquivoGeral[kk];
arquivoGeral[kk] = aux;
}
}
}
//Imprime o vetor ordenado
foreach (int item in arquivoGeral)
Console.WriteLine(item);