Segundo Laboratorio

  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Segundo Laboratorio as PDF for free.

More details

  • Words: 572
  • Pages: 5
SEGUNDO LABORATORIO 1.ESCRIBIR UN PROGRAMA QUE CALCULE LA TABLA DE MULTIPLICAR DE UN NUMERO N class CalculaTablaDeMultiplicar { static void Main(string[] args) { ///<summary> ///Descripcion breve de Class1. /// class Class1 { ///<summary> ///Punot de entrada principal de la aplicacion. /// [STAThread ] static void Main(string[]args) { // //TODO: agragr código aquí para iniciar la aplicacion // inicializacion de variables int C=1, N, Resultado; //Leer N Console.Write("INGRESE N: "); N= int.Parse(Console.ReadLine()); //Calcular la suma de los N primeros Numeros while (C<=2) { //Mostrar rsultado Resultado =N*C; Console.WriteLine(N+"X"+C+"="+Residuo); C++; } Console.ReadLine(); } } }

TRABAJO EN CLASE. Ejercicio 3: Modificar el ejercicio 2 de manera que usted ingrese el valor inicial y el valor final de la tabla de multiplicar

//todo: AGREGA AQUI CODIGO PARA INICIAR LA APLICACION //INICIALIZACION DE VARIABLES

int C = 1, vi,vf, resultado;

// LEER N Console.Write("ingrese vi : "); vi = int.Parse(Console.ReadLine()); Console.Write("ingrese C : "); C = int.Parse(Console.ReadLine()); Console.Write("ingrese vf : "); vf = int.Parse(Console.ReadLine()); //calcular suma de los N primeros numeros while (C <= vf) { // MOSTRAR RESULTADO resultado = vi * C; Console.WriteLine(vi + "x" + C + "=" + resultado); C++; } Console.ReadLine();

Ejercicio 4: TRABAJO EN CASA (Utilizando la strucutra While) Ejercicio 5: Determinar el numero máximo y minimo de una lista de 15 numeros ingresados. LA CODIFICACION EN C# int N = 15; //Declarar variables auxiliares int Maximo = 0; int Minimo = 0;

//Asumir que el primer numero es el menor Console.Write("Ingrese el numero 1 : "); Minimo = int.Parse(Console.ReadLine()); Maximo = Minimo; //Contador int i=0; while (i < N - 1) { //Incrementar el contador i++; //Leer los numeros Console.Write("Ingrese el numero {0}: ", i + 1); int Numero = int.Parse(Console.ReadLine()); //Determinar el maximo if (Numero > Maximo) { Maximo = Numero; } //Determinar el Minimo if (Numero < Minimo) { Minimo = Numero; } } //Escribir los resultados Console.WriteLine("El maximo numero es : {0}", Maximo); Console.WriteLine("El minimo es : {0}", Minimo); Console.ReadLine(); } } } Ejercicio 6: Se tiene las calificaciones el curso de algoritmica primera parcial, segunda parcial y nota de laboratorio, diseñar un algoritmo que calcule el promedio de 10 alumnos.

LA CODIFICACION EN C#

namespace ConsoleApplication1 { class apPromdio_algoritmica { //Nombre :apPromdio_algoritmica //Proposito :Calcula el promedio del curso de algoritmica //Autor :B. Abad Chambilla Chura

//Codigo :007100681-D //FCreacion :12/10/07 //FModificacion :-static void Main(string[] args) { //variables int nota1; int nota2; int nota3; int promedio; string nombre; int contar = 0; //indicar que hace el programa Console.WriteLine("Este programa Calcula el promedio del curso de algoritmica"); // leer datos y procesar while (contar < 10) { contar = contar + 1; Console.WriteLine("Ingrese el nombre del alumno"); nombre = Console.ReadLine(); Console.WriteLine("Ingrese las notas:"); nota1 = int.Parse(Console.ReadLine()); nota2 = int.Parse(Console.ReadLine()); nota3 = int.Parse(Console.ReadLine()); promedio = (nota1 + nota2 + nota3) / 3; Console.WriteLine("el promedio del alumno {0} es {1}", nombre, promedio); } } } } ♦ Tambien se puede hacer de esta manera. //Declarar variables int parcial1; int parcial2; int laborat; int alumno = 0; int promedio; int acumulador = 0; //Procesar while (alumno < 10) { Console.Write("Ingrese la primera nota parcial: "); parcial1 = int.Parse(Console.ReadLine()); Console.Write("Ingrese la segunda nota parcial: "); parcial2 = int.Parse(Console.ReadLine()); Console.Write("Ingrese la nota de laboratorio: "); laborat = int.Parse(Console.ReadLine()); promedio = (parcial1 + parcial2 + laborat) / 3; acumulador = (promedio + acumulador) / 2;

alumno = alumno + 1; } //mostrar Console.WriteLine("El promedio d los diez alumnos es:" + acumulador); Console.ReadLine();

EMAIL: [email protected]

Related Documents

Segundo Laboratorio
October 2019 25
Segundo
July 2020 18
Segundo
November 2019 59