java: You aren't using a compiler supported by lombok, so lombok will not work and has been disabled.
Your processor is: com.sun.proxy.$Proxy26
Lombok supports: OpenJDK javac, ECJ
题目描述: AC代码:
#include<iostream>using namespace std;double a,b,c,d;
int ans 0;double f(double x)
{return a * x * x * x b * x * x c * x d;
}int main()
{scanf("%lf %lf %lf %lf",&a,&b,&c,&d);for…