Click here to Skip to main content
15,888,527 members

Comments by Rohan Garuda (Top 3 by date)

Rohan Garuda 30-Sep-10 5:04am View    
if i remove that from the code .. it says missing ** #include #Quote#stdafx.h#Quote#**
Rohan Garuda 30-Sep-10 3:39am View    
#include #Quote#stdafx.h#Quote#


Using namespace System;

class MatrixMultiplication
{
int[,] a;
int[,] b;
int[,] c;

public void ReadMatrix()
{
Console.WriteLine(#Quote#
Size of Matrix 1:#Quote#);
Console.Write(#Quote#
Enter the number of rows in Matrix 1 :#Quote#);
int m=int.Parse(Console.ReadLine());
Console.Write(#Quote#
Enter the number of columns in Matrix 1 :#Quote#);
int n=int.Parse(Console.ReadLine());
a=new int[m,n];
Console.WriteLine(#Quote#
Enter the elements of Matrix 1:#Quote#);
for(int i=0;i
Rohan Garuda 30-Sep-10 3:39am View    
Deleted
okay im send the total code