Решил сделать код дискриминанта в с++, и не знаю как это сделать. Помогите!
Вот примерный код что я сделал:
#include
#include
using namespace std;
int main()
{
int a, b, c, x, x1, x2, d;
cin>>a>>b>>c;
d = (pow(b,2) - (4*a*c));
if(d > 0){
x1 = (-b + sqrt(d))/2;
x2 = (-b - sqrt(d))/2;
cout<<"x1="< }
if(d = 0){
x = (-b) / 2;
cout<<"x="< }
if(d < 0){
cout<<"Tendeu sheshimi zhok";
}
return 0;
}

Что мне нужно изменить что бы код работал нормально?
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.