包“简单”的好吧
2024-11-16 21:05:05
发布于:广东
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin >>t;
while(t--){
double d;
cin >>d;
if(d==0) cout << "Y" << " " << "0.000000" << " " << "0.000000" << endl;
else{
if(d<4) cout <<"N" << endl;
else{
double t=sqrt(d*d-d*4);
printf("Y %.6lf %.6lf\n",(d-t)/2,(d+t)/2);
}
}
}
return 0;
}
第一个发的人我服了()我你感谢
这里空空如也
有帮助,赞一个