MIPI_BaseC_WebinarFRTK/03_Lecture03/23_sqrt_equation_p49.c

27 lines
707 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
#include <locale.h>
#include <math.h>
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;
}