mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1872.cpp
This commit is contained in:
parent
4da9cf8ad5
commit
8cd4070236
16
QUSTOJ/1872.cpp
Normal file
16
QUSTOJ/1872.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include <iostream>
|
||||
#include <cmath>
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int a,b,c;
|
||||
cin>>a>>b>>c;
|
||||
int x=(-b+sqrt(b*b-4*a*c))/2*a;
|
||||
int y=(-b-sqrt(b*b-4*a*c))/2*a;
|
||||
if(x<y) swap(x,y);
|
||||
cout<<x;
|
||||
if(y!=x) cout<<" "<<y;
|
||||
cout<<endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user