+ 2
How to find the least value entered in array?
So in a code project in sololearn I need to find the least valued no. entered by user in array? In c++.... How to do it? Can anyone explain..?
1 Resposta
+ 4
You can use sort method inbuild in c++.
Another way with hard coding to learn more will be searching a minimum value. You can say my first item is the minimum and the check each item of your array if it is smaller than the minimum. If yes you replace this with the found item. At the end you got it.