标签: java compiler-errors
这是我的代码,但是编译不正确。
AttributeError: module 'utils' has no attribute 'init_logging'
答案 0 :(得分:3)
xe3和xe2是无效的表达式,您可以改用Math.pow()
xe3
xe2
Math.pow()
所以改变
x=(xe3)+ (xe2)+ x + 1;
到
x = Math.pow(x, 3) + Math.pow(x, 2) + x + 1;