#include#include #include #include using namespace std;double a[5];bool f[5];const double p=0.000001;bool dfs(int x)//bool型容易判断有无方案{ if(x==4)//第一个数钦定了,所以是选3个 { for(int i=1;i<=4;i++) if(!f[i]&&fabs(a[i]-24.0)
本文共 362 字,大约阅读时间需要 1 分钟。
#include#include #include #include using namespace std;double a[5];bool f[5];const double p=0.000001;bool dfs(int x)//bool型容易判断有无方案{ if(x==4)//第一个数钦定了,所以是选3个 { for(int i=1;i<=4;i++) if(!f[i]&&fabs(a[i]-24.0)
转载于:https://www.cnblogs.com/ht008/p/6819848.html