如何创建指数加倍值?

时间:2018-07-21 10:37:32

标签: java compiler-errors

这是我的代码,但是编译不正确。

AttributeError: module 'utils' has no attribute 'init_logging'

1 个答案:

答案 0 :(得分:3)

xe3xe2是无效的表达式,您可以改用Math.pow()

所以改变

x=(xe3)+ (xe2)+ x + 1;

x = Math.pow(x, 3) + Math.pow(x, 2) + x + 1;