I am creating a program that will ask the user to enter 5 scores, then it will take these 5 scores and drop the highest and lowest scores. It will then average the 3 remaining scores. I am doing this without the use of arrays.
I have many errors. What I am not understanding is what the correct parameters are for each function, can anyone help me on this?
The abcde undeclared ones are all for your findLowest function. Take a look at it - where are those variables declared? (And PLEASE don't ask me, "well how do I fix it?" It's your program, not mine. I'd just pass in the variables but five at a time is really quite inefficient. Array, maybe?)
The next error is because you take an argument lowest in find lowest. But you don't identify its type. In addition, you are redeclaring the variable which will obscure the other one if not create a syntax error.
You also probably should not declare variables in the same line in which you call a function on them. Declare them outside the line instead of doing stupid "shortenings" under the illusion that they will save time and space.
You call findlowest and findhighest in calcscore. But the program doesn't see the declarations until later in the program. You can prototype them or you can just move the declarations up the list of functions. (Prototyping in the functions tutorial of this site.)
The last issue is, ONCE AGAIN, declaring things in the line in which you call a function on them. Please stop doing that. It's stupid, silly and, as stylishly evidenced by your fifteen errors, does not work.
Fix those and see what happens.