Ya no tienes que indagar más por otros sitios ya que has llegado al lugar necesario, poseemos la respuesta que necesitas hallar pero sin complicarte.
Ejemplo: array suma y multiplicación en c
//This program is for matrix addition by programiz.com#include intmain()int r, c, a[100][100], b[100][100], sum[100][100], i, j;printf("Enter the number of rows (between 1 and 100): ");scanf("%d",&r);printf("Enter the number of columns (between 1 and 100): ");scanf("%d",&c);printf("nEnter elements of 1st matrix:n");for(i =0; i < r;++i)for(j =0; j < c;++j)printf("Enter element a%d%d: ", i +1, j +1);scanf("%d",&a[i][j]);printf("Enter elements of 2nd matrix:n");for(i =0; i < r;++i)for(j =0; j < c;++j)printf("Enter element a%d%d: ", i +1, j +1);scanf("%d",&b[i][j]);// adding two matricesfor(i =0; i < r;++i)for(j =0; j < c;++j)
sum[i][j]= a[i][j]+ b[i][j];// printing the resultprintf("nSum of two matrices: n");for(i =0; i < r;++i)for(j =0; j < c;++j)printf("%d ", sum[i][j]);if(j == c -1)printf("nn");return0;
Si conservas alguna duda o capacidad de renovar nuestro sección eres capaz de escribir una anotación y con deseo lo observaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)