cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Anyone interested in checking my calcult
Anyone interested in checking my calcultor
May 8, 2018 at 12:53am UTC
ghost81
(4)
It is an f(x) area under the curve calculator and I am receiving an error message about float f(x) before I return something such as return x^2; before ending the program.
Please message me and I would be happy to send it to you, Thanks.
May 8, 2018 at 8:25am UTC
Peter87
(11226)
^
is the bitwise XOR operator. If you want to compute x
2
you can use
x * x
or
std::pow(x, 2)
.
Last edited on
May 8, 2018 at 8:25am UTC
Topic archived. No new replies allowed.