Generation

generate functionMon, 03 Apr 2023

calcular el valor de la función 𝑓(𝑥) = 3𝑥^2/5 + 6𝑥/7 − 3 conocido el valor de la variable 𝑥

float f(float x) { return 3*(x*x)/5 + 6*x/7 - 3; }

Want to kickstart your project?Use the new AI Studio to create your code