اكتب برنامج C ، والذي يضيف أعمدة وصفوفًا لجدول معين كما هو موضح في الشكل

  • برمجة
  • برمجة سي c

اكتب برنامج C ، والذي يضيف أعمدة وصفوفًا لجدول معين كما هو موضح في الشكل التالي :

الإدخال :

n (the size of row and column of the given table)
1st row of the table
2nd row of the table
:
:
n th row of the table
The input ends with a line consisting of a single 0

مثال عن الخرج المتوقع :

 

Input number of rows/columns:
4
Input the cell value

Row 0 input cell values
25
69
51
26

Row 1 input cell values
68
35
29
54

Row 2 input cell values
54
57
45
63

Row 3 input cell values
61
68
47
59

Result:
   25   69   51   26  171
   68   35   29   54  186
   54   57   45   63  219
   61   68   47   59  235
  208  229  172  202  811

الأجوبة

/*Write a C program, which adds up columns and rows of given table as shown in the following figure*/

#include <stdio.h>
int main()
{
  int cell_data[11][11];
  int i, j, n, sum_val;
    printf("Input number of rows/columns:\n"); 
    scanf("%d", &n);
    printf("Input the cell value\n"); 
    if(n>0)
    {	
    for(i=0;i<n;i++){
    	printf("\nRow %d input cell values\n",i);
      for(j=0;j<n;j++){
	scanf("%d", &cell_data[i][j]);
      }
    }
    printf("\nResult:\n");
    for(i=0;i<n;i++){
      sum_val=0;
      for(j=0;j<n;j++){
	sum_val+=cell_data[j][i];
      }
      cell_data[n][i]=sum_val;
    }
    

    for(i=0;i<n;i++){
      sum_val=0;
      for(j=0;j<n;j++){
	sum_val+=cell_data[i][j];
      }
      cell_data[i][n]=sum_val;
    }

    sum_val=0;
    for(i=0;i<n;i++){
      sum_val+=cell_data[n][i];
    }
    cell_data[n][n]=sum_val;

    for(i=0;i<n+1;i++){
      for(j=0;j<n+1;j++){
       	printf("%5d", cell_data[i][j]);
      }
      printf("\n");
    }
}
  return 0;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...