// Solução do exercício proposto Tutorial 14 4-c
#include <cstdlib>
#include <iostream>
using namespace std;
const int MAX_A = 5;
const int MAX_B = 5;
const int MAX_C = 5;
void leVetor(int v[], int t);
void imprimeVetor(int v[], int t);
void multiplicaVetores(int v1[], int v2[], int v3[], int t);
int main(int argc, char *argv[])
{
int A[MAX_A];
int B[MAX_B];
int C[MAX_C];
printf("Vetor A\n");
leVetor(A, MAX_A);
printf("\nVetor B\n");
leVetor(B, MAX_B);
multiplicaVetores(A, B, C, MAX_C);
printf("\nVetor A\n");
imprimeVetor(A, MAX_A);
printf("\nVetor B\n");
imprimeVetor(B, MAX_B);
printf("\nVetor C\n");
imprimeVetor(C, MAX_C);
system("PAUSE");
return EXIT_SUCCESS;
}
void leVetor(int v[], int t) {
int i;
printf("\nInforme valores do vetor\n");
for(i=0;i<t;i++) {
printf("%d: ", i+1);
scanf("%d", &v[i]);
putchar('\n');
}
}
void imprimeVetor(int v[], int t) {
int i;
printf("\nValores do vetor\n");
for(i=0;i<t;i++) {
printf("%d: %d ", i+1, v[i]);
}
putchar('\n');
}
void multiplicaVetores(int v1[], int v2[], int v3[], int t) {
int i;
for(i=0;i<t;i++)
v3[i] = v1[i] * v2[i];
}
Nenhum comentário:
Postar um comentário
Observação: somente um membro deste blog pode postar um comentário.