#include #include #include int main(int argc, char **argv) { float a,b,c; float B,d; float X1,X2; setlocale(LC_ALL, ".utf-8"); printf("Вычисление корней квадратного уравнения\"a*x*x+b*x+с=0\"\n"); printf("Введите a:\n"); scanf ("%f", &a); //1 printf("Введите b:\n"); scanf ("%f", &b); //18 printf("Введите c:\n"); scanf ("%f", &c); //32 B = b/2; d = sqrtf(B*B - a*c); printf("Корни квадратного уравнения \n"); X1 = (-B + d)/a; //-2 printf("X1 = %f \n",X1); X2 = (-B - d)/a; //-16 printf("X2 = %f \n",X2); return 0; }