14/05/2016

C Program To Find Maximum Even Number In Row In Matrix

Problem :- C Program To Find Row In An Array That Include The Greatest Amount Of Even Number 

Input Is Below 


www.programmingwithbasics.com
Solution :- 

#include<iostream>
using namespace std;
int main()
{
int a[10][10],n,l,i,j,count=0;
cout<<"\nEnter The Matrix Size (l*l)\n";
cin>>l;
cout<<"\nEnter The Row Number Of Matrix\n";
cin>>n;
if(n<0||n<=l)
{

}
else
{
cout<<"\nRow Is Exceed The Limit Enter Value >0 And Less Than Size Of Matrix \n";
exit(0);
}
cout<<"Enter The Matrix Value\n";

for(i=1;i<=l;i++)
for(j=1;j<=l;j++)
cin>>a[i][j];

cout<<"\n\nMatrix Row Is Given Below\n\n";
for(i=1;i<=l;i++)
{
cout<<a[n][i]<<" ";
if(a[n][i]%2==0)
count++;
}
cout<<"\n\nNo. Of Even Number In Row IS =  "<<count;
return 0;
}

Output:-

C Program To Find Maximum Even Number In Matrix

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

1 comment:

  1. number
    amount - of uncountable
    number - of countable
    amount of sand/salt/flour
    number of characters/flowers/numbers

    ReplyDelete