Console.Write("The amount of int numbers you want to enter: ");
int n = int.Parse(Console.ReadLine());
Console.Write("\nEnter the int`s: ");
for (int i = 0; i < n; i++) {
list[i] = int.Parse(Console.ReadLine());
for (int i = 0; i <n; i++) {
if(list[i] < minValue && list[i] != 0) {
for (int i = 0; i < n; i++) {
if (list[i] == maxValue) {
if (list[i] == minValue) {
Console.WriteLine("The amount of the highest number "+ maxValue +" is: "+ max);
Console.WriteLine("The amount of the lowest number " +minValue +" is: " +min);