-
Notifications
You must be signed in to change notification settings - Fork 7
/
oitavo.cpp
49 lines (35 loc) · 988 Bytes
/
oitavo.cpp
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
#include <iostream>
using namespace std;
//Vetores
int main(){
// Alocação Estática
//int vet[4];
//vet[0]=5;
//vet[1]=10;
//int vet[4] = {5,10};
//cout << vet[2] << endl;
//cout << "[ ";
//for (int i=0 ; i<4 ; i++){
// cout << vet[i] << " ";
//}
//cout << " ]" << endl;
//int x = sizeof(vet)/sizeof(int);
//int y = sizeof(int);
//cout << "Tamanho de inteiro: " << y << endl;
//cout << "Quantidade de elementos do vetor: " << x << endl;
// Alocação Dinâmica
int tamanho;
cout << "Digite o tamanho do vetor!" << endl;
cin >> tamanho;
int* vetor = new int[tamanho];
for (int i=0 ; i<tamanho ; i++){
cout << "Digite o elemento " << i+1 << "do vetor: " << endl;
cin >> vetor[i];
}
for (int i=0 ; i<tamanho ; i++){
cout << vetor[i] << " ";
}
cout << endl;
delete [] vetor;
return 0;
}