#include <stdio.h>
#include <math.h>
int main() {
float a=2, b=5, c=2, resultado;
resultado=(-b+sqrt(pow(b,2)-(4*a)*c))/(2*a);
printf("tu resultado es: %f\n", resultado);
resultado=(-b-sqrt(pow(b,2)-(4*a)*c))/(2*a);
printf("tu resultado es: %f\n", resultado);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: