题解列表

筛选

1106奖学金(sort排序)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;//这里注意一下书写的顺序,不然也会出现调用上的错误st……

题解 1852: 求1+2+3+...+n的值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll eee(ll a){    ll ……

1111Cylinder(数学与语文的结合)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define PI 3.141592653589793//这道题考的是语文阅读理解吧?//首……

题解 1242: 矩阵转置

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

1242: 矩阵转置

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1000;ll a……