@antohin
š„ Hey!
š„ What about link between Math and Programming?
š„ Next function describe green curve below:
#include <stdio.h>
#include <math.h>
float the_function(float x);
int main() {
float x = 16;
printf("For x = %.1f the function give %.1f", x, the_function(x));
return 0;
}
float the_function(float x){
return -12*pow(x,2)+870*x+9600;
}