اكتب برنامج بلغة C لقبول مصفوفة ويحدد ما إذا كانت مصفوفة متفرقة

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

اكتب برنامج بلغة C لقبول مصفوفة ويحدد ما إذا كانت مصفوفة متفرقة

ملاحظة : المصفوفة المتفرقة هي مصفوفة تحتوي على عناصر قيمتها تساوي 0 أكثر من العناصر التي قيمتها لا تساوي الصفر

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

Determine whether a matrix is a sparse matrix :
----------------------------------------------------
Input the number of rows of the matrix : 2
Input the number of columns of the matrix : 2
Input elements in the first matrix :
element - [0],[0] : 0
element - [0],[1] : 0
element - [1],[0] : 1
element - [1],[1] : 0
The given matrix is sparse matrix.
There are 3 number of zeros in the matrix.

الأجوبة

/*Write a program in C to accept a matrix and determine whether it is a sparse matrix*/

#include <stdio.h>

/*A sparse martix is matrix which  has more zero elements than nonzero elements */
void main ()
{
	static int arr1[10][10];
	int i,j,r,c;
	int ctr=0;
     printf("\n\nDetermine whether a matrix is a sparse matrix :\n");
     printf("----------------------------------------------------\n");	
     printf("Input the number of rows of the matrix : ");
     scanf("%d", &r); 
     printf("Input the number of columns of the matrix : ");
     scanf("%d", &c); 
	 printf("Input elements in the first matrix :\n");
       for(i=0;i<r;i++)
        {
            for(j=0;j<c;j++)
            {
	           printf("element - [%d],[%d] : ",i,j);
	           scanf("%d",&arr1[i][j]);
			if (arr1[i][j]==0)
			{
				++ctr;
			}
            }
        }  
	if (ctr>((r*c)/2))
	{
		printf ("The given matrix is sparse matrix. \n");
	}
	else
		printf ("The given matrix is not a sparse matrix.\n");

	printf ("There are %d number of zeros in the matrix.\n\n",ctr);
}
هل كان المحتوى مفيد؟

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

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