-
Notifications
You must be signed in to change notification settings - Fork 0
/
lista01.cs
128 lines (105 loc) · 2.86 KB
/
lista01.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
using System;
class Principal{
static void questao1(){
int soma = 0;
for(int i =2; i<= 1000; i=i+2){
soma+=i;
soma = soma + i;
}
for(int i =1; i<= 1000; i++){
if (i%2 == 0)
{
soma+=i;
}
soma = soma + i;
}
Console.WriteLine("Soma total: " + soma);
}
static void questao2(int fat){
int mult = 1;
for(int i = fat; i > 0; i--){
mult *= i;
//mult = mult * i;
}
Console.WriteLine("Fatorial: " + mult);
}
static void questao3(){
int[] vetor = new int[10]{5,6,20,1,2,3,150,-20,-30,400};
float media, soma = 0f;
int menor, maior;
menor = vetor[0];
maior = vetor[0];
for (int i = 0; i < vetor.Length; i++)
{
if(vetor[i]< menor){
menor = vetor[i];
}
if(vetor[i]> maior){
maior = vetor[i];
}
soma += vetor[i];
}
media = soma/vetor.Length;
Console.WriteLine("Menor: " + menor);
Console.WriteLine("Maior: " + maior);
Console.WriteLine("Média: " + media);
}
static int[] questao4(int[] vet1, int[] vet2){
int[] vetor = new int[vet1.Length+vet2.Length];
int pos = 0;
for (int i = 0; i < vet1.Length; i++)
{
vetor[i] = vet1[i];
pos=i;
}
pos++;
for (int i = 0; i < vet2.Length; i++)
{
vetor[i+pos] = vet2[i];
}
return vetor;
}
static void imprimeVetor(int[] vet){
for (int i = 0; i < vet.Length; i++)
{
Console.WriteLine(vet[i]);
}
}
static void imprimeMatriz(int[,] matriz){
for (int i = 0; i < matriz.GetLength(0); i++)
{
for (int j = 0; j < matriz.GetLength(1); j++)
{
Console.Write(matriz[i,j] + " ");
}
Console.WriteLine("\n");
}
}
static void questao6(int num){
int[,] matriz = new int[num,num];
int count = 0;
for (int i = 0; i < num; i++)
{
for (int j = 0; j < num; j++)
{
count++;
matriz[i,j] = count;
}
}
imprimeMatriz(matriz);
}
static void Main(){
//questao1();
//questao2(10);
//questao3();
/*int[] vetor1 = new int[3]{1,2,3};
int[] vetor2 = new int[5]{900,800,700,600,500};
int[] vetorFinal = new int[vetor1.Length+vetor2.Length];
vetorFinal = questao4(vetor1, vetor2);
imprimeVetor(vetorFinal);
*/
questao6(2);
questao6(3);
questao6(4);
}
}