Anton pfp
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
4 reactions