![]() |
Finding the lowest number in C
Sorry if I do/say something stupid this is my first post here.
I have a function that is passed 6 variables and I want to write some code to figure out which one has the lowest value. This is what I have so far: Code:
int LeastInStore(int pup, int kitn, int bird, int snk, int fish, int bun) |
Re: Finding the lowest number in C
You have posted the query as an article in the Article / Source code section. I have moved it to the Queries and discussion forum.
No you have not messed the stuff its just one logical error. lowest should be initialized to one of the element rather than 0 Code:
lowest = quantityOfPets[1];Code:
for(i = 1; i<7; i++) |
Re: Finding the lowest number in C
shabbir: Thanks for moving it, I don't know why/how I posted it there :)
And thanks for the help, looping through 6 of the 7 items was a holdover from before I initialized the Array, I wanted to "make sure" that I didn't get some wacked out value in there. It's overall effect was completely unnoticed by me because of the second thing you corrected. Changing that out of place 0 to one of the values that I am actually testing for worked like a charm. Not quite sure why I put 0 in there in the first place. Anyways thanks for the help, everything (well at least this function) is working now. |
Re: Finding the lowest number in C
My pleasure.
|
| All times are GMT +5.5. The time now is 04:54. |