-
Notifications
You must be signed in to change notification settings - Fork 0
/
problema 4.c
65 lines (65 loc) · 1.58 KB
/
problema 4.c
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
//Jesús Huerta Aguilar, Javier de La Luz Ruiz, Ernesto Flores Cesareo
//Programación I - "Programa: Producto punto de dos vectores (arreglos)"
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
//PROTOTIPOS
void lectura(int [],int);
void punto(int [],int [],int);
//PRINCIPAL
int main(){
//TAMAÑO PRINCIPAL DE LOS ARREGLOS
int tam;
do{
printf("Ingrese el tama%co de los arreglos: ",164);
scanf("%d",&tam);
if (tam <= 0){
printf("\n[!] ERROR: Dimenciones no valdias [!]");
getch();
system("cls");
}
} while (tam <= 0);
int a[tam],b[tam];
//LECTURA DE A Y B
printf("\n///// ARREGLO A\n\n");
lectura(a,tam);
printf("\n///// ARREGLO B\n\n");
lectura(b,tam);
//PRODUCTO PUNTO
printf("\n///// PRODUCTO PUNTO A %c B\n\n",250);
punto(a,b,tam);
getch();
return 0;
}
//LECTURA
void lectura(int arreg[],int tam){
int i,res;
for (i = 0; i < tam; i++){
printf("\t[%02d] -> ",i+1);
scanf("%d",&arreg[i]);
}
}
//PRODUCTO PUNTO
void punto(int ara[],int arb[],int tam){
int i,mult,res=0;
printf("\t[A%cB] = ",250);
for (i = 0; i < tam; i++){
if (i < tam-1){
printf("%d%c%d + ",ara[i],158,arb[i]);
}
else{
printf("%d%c%d = ",ara[i],158,arb[i]);
}
}
for (i = 0; i < tam; i++){
mult = ara[i]*arb[i];
if (i < tam-1){
printf("%d + ",mult);
}
else{
printf("%d = ",mult);
}
res += mult;
}
printf("%d\n",res);
}