经典全排列变种体,在找全排列的时候可以在每个节点多dfs几次把运算的可能顺序的结果也得到,注意整数除法可能取0的情况 #include <iostream> using namespace std; const int N = 10; int n = 4, g[N]; bool st[N], is24; string s[N * N * N * N]; void dfs(int u, double res) { if (u == n) { if (res == 24) is24 = true; } for (int...