题解列表

筛选

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……

2886: 图像旋转

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

3010 奇偶数之和

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){  int n,sum1=0,sum2 =0;  cin>>……

2000: 偶数列举

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){  int n;  cin>>n;  for (int i=……

3010: 奇偶数之和

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int n,s=0,d=0;    cin>>n; ……

1764 循环入门练习1

摘要:解题思路:循环注意事项:注意定义参考代码:#include<iostream>using namespace std;int main() {    int sum = 0;    for(int i……