diff --git a/Even or Odd b/Even or Odd new file mode 100644 index 0000000..251010f --- /dev/null +++ b/Even or Odd @@ -0,0 +1,14 @@ +#include +using namespace std; +int main() +{ int n; + cin>>n; + if(n%2==0) + { + cout< +using namespace std; +int main() +{ + int A[10][10],B[10][10],mul[10][10],r,c,i,j,k; + cout<<"Enter the number of row="; + cin>>r; + cout<<"Enter the number of column="; + cin>>c; + cout<<"Enter the first matrix element=\n"; +for(i=0;i>A[i][j]; + } +} +cout<<"Enter the second matrix element=\n"; +for(i=0;i>B[i][j]; + } +} +cout<<"Multiply of the matrix=\n"; +for(i=0;i