cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
What is the definition of a function tha
What is the definition of a function that takes as input the 3 numbers?
Feb 17, 2013 at 6:33pm UTC
collegegrad012
(3)
The function returns true if the 1st number to the power of the 2nd number equals the 3rd number; otherwise it returns false. (Assume that the 3 numbers are of type double). How would this look?
Feb 17, 2013 at 6:43pm UTC
sysopfb
(18)
Write out the logic in psuedocode so you can get it right in your head. Something like
my_function(first, second, third)
set temp to first ^ second
return temp == third
Topic archived. No new replies allowed.