开发者

Xcode Using Exponents

This is probabl开发者_如何学Goy a simple question, but I a variable "side" to be divided by the square of the variable "curNum". Currently, my code for this looks like

side = inputNum/(curNum^2);

However, this gives me the error "Invalid operands to binary ^" How can I successfully use exponents?


Try

pow(curNum, 2) 

Should work......

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜