Ejercicio 4 PDF - C# Program to Find Max Positive Integer
Document Details
Uploaded by CostEffectiveRationality3754
ILERNA
Tags
Summary
This C# program calculates the maximum of a series of positive integers entered by the user. The program stops when the user enters 0. It provides an example of a basic algorithm in C# for finding the maximum value.
Full Transcript
```C# using System; public class Program { static void Main() { int numero = 0; int maximo = 0; do { // ---- Pedir un número Console.WriteLine("Introduce un número"); numero = int.Parse(Console.ReadLine()); // ---- Comp...
```C# using System; public class Program { static void Main() { int numero = 0; int maximo = 0; do { // ---- Pedir un número Console.WriteLine("Introduce un número"); numero = int.Parse(Console.ReadLine()); // ---- Comprobar si es NEGATIVO //if (numero < 0) //{ // break; //} if (numero > 0) { // ---- Comprobar si es mayor que el máximo if (numero > maximo) { maximo = numero; } } } while (numero >= 0); // ---- Mostrar el máximo Console.WriteLine(maximo); } } ``` CALCULAR EL MAXIMO DE N ENTEROS POSITIVOS. EL MENOR DE LOS NUMEROS VALIDOS COMO RESULTADO ES EL 0. EL PROGRAMA DESA DE SOLICITAR NUMEROS CUANDO SE INTRODUCE EL 0.