Answer to Question #11450 in C# for Ken

Question #11450
I need to develop a program in C# of users inputting 10 numbers for an array and then having the lowest and highest picked out of the ten.

ANy help here is greatly appreciated.
1
Expert's answer
2012-07-06T07:46:16-0400
int[] arr = new int[10];
for (int i = 0; i < arr.Length;
i++)
{
arr[i] =
int.Parse(Console.ReadLine());
}
int min =
arr[0];
int max = arr[0];
for (int i = 1; i <
arr.Length; i++)
{
if (arr[i] >
max)
max = arr[i];
if (arr[i] <
min)
min = arr[i];
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS