User profile: Kerndog73

User info
User name:Kerndog73
Name:Indi Kernick
History
Joined:
Number of posts:7
Latest posts:

Need help with User-Defined Functions and Looping
You're passing the arguments in the wrong order. Line 70 is [code] gross = Gross(hours, wage); [/cod...

Need help with User-Defined Functions and Looping
Perhaps you could trace the input to [code]Gross[/code] from [code]GetData[/code] with [code]std::co...

Need help with User-Defined Functions and Looping
You're [code]Gross[/code] function looks like it behaves correctly. Somehow the code that passes inp...

Need help with User-Defined Functions and Looping
Have you passed in an hours value that you know is greater than 40 and put a [code]std::cout[/code] ...

Need help with User-Defined Functions and Looping
One more thing you could do is define constants. For example in [code]Gross[/code]. Your calculating...