Content
@
0 reply
0 recast
0 reaction
Anton
@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; }
0 reply
0 recast
1 reaction