题解列表

筛选

2772: 苹果和虫子

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

2888: 图像模糊处理

摘要:``` #include using namespace std; const int N=1000; double a[N][N],b[N][N]; int c[N][N]; int m……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{   int xh,zf,a,b,c;} s[1000……

2866: 过滤多余的空格

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

2853: 字符替换

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

1200: 回文串C++

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

2786: 判断能否被3、5、7整除

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int n, count = 0;    cin >> n; ……