Find Largest and Smallest numbers in C# app
Hello all, I am working on a project for my school and I am really stumped. We have to create a console application where you are prompted to enter in 3 different numbers for the program. Well I need some help trying to get the program to find the smallest and the largest of those three numbers. Any suggestions? I've been told you need to compare number 1 to number, and then take that and compare it to number 3 but I don't know how. Can anyone help?
Jan MontanoPosted Sep 16, 2007, 10:17 PM
Initially, you have to assign the first number in your array to min and max. Then traverse the array.
1. Traverse array.
2. Compare if current number is less than min, then assign that number to min if it is.
3.Compare if current number is greater than max, then assign that number to max if it is.
(after traversing the loop...)
4. Display minimum and maximum numbers.