Hello, I’m working on this task:
Write a program that reads integer count and then reads count integer numbers from the console and outputs their minimum. Example:
>3
>14
>57
>-10
-10
Here is my code:
namespace ForLoops
{
class Minimum
{
static void Main(string[] args)
{
int minimum = 200000000;
int forN = 100000000;
for(int n = 0; n < forN; n++)
{
int number = int.Parse(Console.ReadLine());
if(number < minimum)
minimum = number;
else
Console.WriteLine($"{minimum}");
}
}
}
}
Can anyone please help me to solve it?