Suma de vectores en C#
Realizar un programa que sume dos vectores y los almacene en un tercer vector
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PruebaVector
{
class PruebaVector
{
private int[] A;//Declaramos un vector A
private int[] B;//Declaramos un vector B
private int[] C;//Declaramos un vector C
public void Cargar()
{
Console.Write("Ingrese la longitud de los vectores a sumar: ");
string linea;
linea = Console.ReadLine();
int n = int.Parse(linea);
A = new int[n];
B = new int[n];
C = new int[n];
Console.WriteLine("Ingresando valores al vector A");
for (int i = 0; i< A.Length; i++)
{
Console.Write("Ingrese componente [" + ( i + 1 ) +"]: ");
linea = Console.ReadLine();
A[i] = int.Parse(linea);
}
Console.WriteLine("Ingresando valores al vector B");
for (int j = 0; j< B.Length; j++)
{
Console.Write("Ingrese componente [" + (j + 1) + "]: ");
linea = Console.ReadLine();
B[j] = int.Parse(linea);
}
for (int i = 0; i< A.Length; i++)
{
C[i]=A[i]+B[i];
}
}
public void Visualizar()
{
Console.WriteLine("La suma de los vecores es: ");
for (int i = 0; i< A.Length; i++)
{
Console.Write("["+C[i]+"] ");
}
Console.ReadLine();
}
static void Main(string[] args)
{
PruebaVector pv = new PruebaVector();
pv.Cargar();
pv.Visualizar();
}
}
}
Gran Aporte
ResponderEliminarUn héroe sin capa
ResponderEliminarBuena solución, mucha ayuda para los que comenzamos.
ResponderEliminarPrograma
ResponderEliminarque sume dos vectores de longitud 15 y almacene
los resultados en un tercer vector ALGUIE ME PUEDE APOYAR SE LO AGRADECERIA ESTOY INICIANDO LA CARRERA DE SISTEMAS COMPUTACIONALES