Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: CrÄsH en 21 Noviembre 2007, 12:12 PM
gusman no me deja ejecutar tu codigo me saltan errores en la linea de public static void.
I como es para ejecutar comandos msdos¿?¿
namespace suma
{
public class sumabidi
{
public void sumabidi1(int[,] Arr1, int[,] Arr2)
{
if ((Arr1.GetLength(0) != Arr2.GetLength(0)) || (Arr1.GetLength(1) != Arr2.GetLength(1)))
throw new Exception("Las dimensiones de las matrices no coinciden");
int suma;
for (int x = 0; x < Arr1.GetLength(0); x++)
{
for (int y = 0; y < Arr1.GetLength(1); y++)
{
suma = Arr1[x, y] + Arr2[x, y];
Console.WriteLine("Resultado suma [" + x.ToString() + "][" + y.ToString() + "] =" + suma.ToString());
Console.ReadLine();
}
}
}
public int[,] sumabidi2(int[,] Arr1, int[,] Arr2)
{
if ((Arr1.GetLength(0) != Arr2.GetLength(0)) || (Arr1.GetLength(1) != Arr2.GetLength(1)))
throw new Exception("Las dimensiones de las matrices no coinciden");
int[,] suma = new int[Arr1.GetLength(0), Arr2.GetLength(0)];
for (int x = 0; x < Arr1.GetLength(0); x++)
for (int y = 0; y < Arr1.GetLength(1); y++)
suma[x, y] = Arr1[x, y] + Arr2[x, y];
return suma;
}
}
}