This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
multi_py.py
79 lines (79 loc) · 2.63 KB
/
multi_py.py
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
print("Suma y multiplicacion de matrices")
decision=int(input("Para sumar matrices ingresa 1, para multiplicar ingresa 2"))
if decision== 1:
na = int(input("Ingresar numero de columnas de la matriz A"))
ma= int(input("Ingresar numero de filas de la matriz A"))
print(na,ma)
matrizA = []
for i in range(0,ma):
matrizA.append([])
for j in range(0,na):
matrizA[i].append(0)
matrizA[i][j] = int(input())
print("Matriz A")
for a in matrizA:
print (a)
nb = int(input("Ingresar numero de columnas de la matriz B"))
mb= int(input("Ingresar numero de filas de la matriz B"))
print(nb,mb)
matrizB = []
for i in range(0,mb):
matrizB.append([])
for j in range(0,nb):
matrizB[i].append(0)
matrizB[i][j] = int(input())
print ("Matriz B")
for b in matrizB:
print (b)
if na == nb and ma == mb:
matrizC = []
for i in range(len(matrizA)):
matrizC.append([])
for j in range(len(matrizB[0])):
matrizC[i].append(0)
matrizC[i][j] = matrizA[i][j] + matrizB[i][j]
print ("Matriz C")
for c in matrizC:
print(c)
else:
print ("El numero de filas y columnas no es valido")
elif decision == 2:
na = int(input("Ingresar numero de columnas de la matriz A"))
ma= int(input("Ingresar numero de filas de la matriz A"))
print(na,ma)
matrizA = []
for i in range(0,ma):
matrizA.append([])
for j in range(0,na):
matrizA[i].append(0)
matrizA[i][j] = int(input())
print("Matriz A")
for a in matrizA:
print (a)
nb = int(input("Ingresar numero de columnas de la matriz B"))
mb= int(input("Ingresar numero de filas de la matriz B"))
print(nb,mb)
matrizB = []
for i in range(0,mb):
matrizB.append([])
for j in range(0,nb):
matrizB[i].append(0)
matrizB[i][j] = int(input())
print ("Matriz B")
for b in matrizB:
print (b)
if na == mb:
matrizC = []
for i in range(len(matrizA)):
matrizC.append([])
for j in range(len(matrizA[0])):
matrizC[i].append(0)
for k in range(len(matrizB)):
matrizC[i][j] += matrizA[i][k] * matrizB[k][j]
print("Matriz C")
for c in matrizC:
print(c)
else:
print("El numero de filas y columnas no es valido")
else:
print("Ingresar una operacion valida")