DESARROLLO DE CONTENIDOS PARA MATERIA DE PROGRAMACIÓN II | UPDS Evidencias: 1. Diseñe un programa de 5 números enteros y hallar su suma. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace suma_de_5_numeros_enteros { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnsumar_Click(object sender, EventArgs e) { int num1 = Convert.ToInt32(txtnum1.Text), num2 = Convert.ToInt32(txtnum2.Text), num3 = Convert.ToInt32(txtnum3.Text), num4 = Convert.ToInt32(txtnum4.Text), num5 = Convert.ToInt32(txtnum5.Text), suma = 0; suma = num1 + num2 + num3 + num4 + num5; lblresultado.Text = "la suma es igual a:" + suma; } } } 2.- diseñar un programa para inicializar un vector de 10 posiciones que realice las siguientes tareas. 1 llena el vector 2 obtenga los cuadrados de cada elemento. 3 obtenga sus raíces de cada elemento. 4 muestre los vectores. 3.-diseña un programa que almacene su nombre completo y lo muestre using System; using System.Collections.Generic; using System.Linq; using System.Text; DESARROLLO DE CONTENIDOS PARA MATERIA DE PROGRAMACIÓN II | UPDS using System.Threading.Tasks; namespace almacena_su_nombre { class Program { static void Main(string[] args) { string nombre; Console.WriteLine("ingrese su nombre completo: "); nombre = Console.ReadLine(); System.Console.Clear(); Console.Write("el nombre ingresado: " + nombre); Console.ReadKey(); } } } 4.-diseñe un programa que sume 3 vectores. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace suma_de_tres_vectores { class Program { private int[] A; private int[] B; private int[] C; private int[] D; public void cargar() { Console.Write("ingrese el tamaño del vector para sumar:"); string linea; linea = Console.ReadLine(); int n = int.Parse(linea); A = new int[n]; B = new int[n]; C = new int[n]; D = new int[n]; Console.WriteLine("ingresando valores al vector A"); DESARROLLO DE CONTENIDOS PARA MATERIA DE PROGRAMACIÓN II | UPDS for (int i = 0; i < A.LongLength; i++) { Console.WriteLine("ingrese el componete[" + (i + 1) + "]:"); linea = Console.ReadLine(); A[i] = int.Parse(linea); } Console.WriteLine("ingrese 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); } Console.WriteLine("ingresando valores al vector C"); for(int r=0;r<C.Length;r++) { public void cargar() { Console.Write("ingrese el tamaño del vector para sumar: "); string linea; linea = Console.ReadLine(); int n=int.Parse(linea); A=new int[n]; B=new int[n]; C=new int[n]; D=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 vectror B"); for(int j=0;j<B.Length;j++) { Console.Write("ingrese componente["+(j+1)+" ]: "); linea=Console.ReadLine(); B[j]=int.Parse(linea); } Console.WriteLine("ingresando valores al vectror C"); for(int r=0;r<C.Length;r++) { Console.Write("ingrese componente["+(r+1)+" ]: "); linea=Console.ReadLine(); C[r]=int.Parse(linea); } for(int i=0;i<A.Length;i++) { D[i]=A[i]+B[i]; D[i]=D[i]+C[i]; } } public void visualizar() { Console.WriteLine("la suma de los vectores es: "); for(int i=0;i<A.Length;i++) { Console.Write("["+D[i]+"]"); DESARROLLO DE CONTENIDOS PARA MATERIA DE PROGRAMACIÓN II | UPDS } Console.ReadLine(); } static void Main(string[] args) { suma_de_3_vectores pv=new suma_de_3_vectores(); pv.cargar(); pv.visualizar(); } } } 5.-diseña un programa que genere la serie de Fibonacci. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace fibonacci1 { class Program { static void Main(string[] args) { int n1 = 1, n2 = 0, R, CONT = 0, cantidad; R = 1; Console.WriteLine("ingrese el numero"); cantidad = int.Parse(Console.ReadLine()); Console.WriteLine("serie de fibonacci"); Console.WriteLine("0"); while(CONT<cantidad-1) { Console.WriteLine(R); R = n1 + n2; n2 = n1; n1 = R; CONT++; } Console.WriteLine("presione una tecla para salir"); Console.ReadKey(); } } } DESARROLLO DE CONTENIDOS PARA MATERIA DE PROGRAMACIÓN II | UPDS