UNIVERSIDAD AUTONOMA DE TLAXCALA “Facultad de Ciencias Básicas, Ingeniería y Tecnología” Licenciatura; Ingeniería en Sistemas Electrónicos MATERIA: Sistemas lineales TEMA: Programa de multiplicación de matices. Alumnos: Rodolfo Emmanuel cerón Téllez Periodo: OTOÑO 2015. Programa. #include<conio.h> #include<stdio.h> main() { int A[20][20],B[20][20],C[20][20],k,h,n,r; clrscr(); printf ("¿De que tamanio de la matriz? "); scanf ("\n %d",&n); printf("\nEscribe la matriz A"); for(k=1;k<=n;k++) for(h=1;h<=n;h++) { gotoxy(3+h*3,3+k*2); scanf("%d",&A[k][h]); } printf("Escribe la matriz B"); for(k=1;k<=n;k++) for(h=1;h<=n;h++) { gotoxy(3+h*3,8+k*2); scanf("%d",&B[k][h]); } printf("La multiplicacion es:"); for(k=1;k<=n;k++) for(h=1;h<=n;h++) { for(r=1;r<=n;r++) C[k][h]=C[k][h]+(A[k][r]*B[r][h]); } for(k=1;k<=n;k++) for(h=1;h<=n;h++) { gotoxy(3+h*3,12+k*2);printf("%d",C[k][h]); } getch(); }