1. About C4716: didn't you know that double F_Ite()
function must return double type value? And where is return anything-of-double_type
in the function body? It's your code, you have wrote double F_Ite()
...
2. Use code tag with the language specifier (see this forum announcements):
[code=cplusplus] source
[/code]
It's impossible to cope with this unformatted nightmare!
3. There are two common ways to "return" several values:
3.1 Declare several function parameters (pointers or references to targets).
3.2 Declare a proper struct or class compound type then fill the object of this type and return it as a function value.