题解列表

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:h=(150/15)*2 t=(15+25)*h/2 print("%.2f"%t)……

初学者的写法

摘要:解题思路: 无脑if else注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double a,b,c,d;  ……

只用了for循环和冒泡排序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define N 10int main(){    int a[N];    in……

火柴棒等式,暴力dfs

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 全局变量声明 int n, a[10005], b[10005] =……