-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrootofnumber.cpp
More file actions
50 lines (44 loc) · 868 Bytes
/
rootofnumber.cpp
File metadata and controls
50 lines (44 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include<iostream>
using namespace std;
#include<cmath>
void quadraticRoots(int a,int b, int c)
{
int d;
//Your code here
if(a==0)
{
cout<<"Invalid";
}
else
{
d=(pow(b,2))-4*a*c;
if(d>=0)
{
double root1,root2;
root1=(-b+sqrt(d))/(2*a);
root2=(-b-sqrt(d))/(2*a);
if(root1>root2)
{
cout<<floor(root1)<<" "<<floor(root2);
}
else
{
cout<<floor(root2)<<" "<<floor(root1);
}
}
else
{
cout<<"Imaginary";
}
}
// Your don't need to printline
// It will automatically be
// handled by driver code
}
int main()
{
int a,b,c;
cin>>a>>b>>c;
quadraticRoots(a,b,c);
return 0;
}