题解列表
2861: 验证子串
摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h>
using namespace std;
int main()
{
    string str ;
  …… 
题解 1764: 循环入门练习1
摘要:解题思路:利用高斯的求数方法,没想到对了。注意事项:直接输出结果就行参考代码:#include <bits/stdc++.h>using namespace std;int main(){    co…… 
二级C语言-同因查找(c语言版)
摘要:解题思路:求出10至1000之内能同时被2、3、7整除的数,并输出。用for循环让i从10到1000进行遍历,用if语句找到符合条件的数字,再用printf进行输出。注意事项:1:i要小于等于1000…… 
2908: 白细胞计数
摘要:```
#include
using namespace std;
const int N=310;
double a[N];
int main(){
int n;
cin>…… 
题解 2877: 同行列对角线的格子
摘要: #include
using namespace std;
const int N=1100;
int a[N],b[N],x[N],y[N],n,i,j;
…… 
1099:校门外的树
摘要:```
#include
using namespace std;
const int N=10010;
int a[N];
int main() {
int n,m;
cin>>n…… 
1099: 校门外的树
摘要:```
#include
using namespace std;
const int N=10010;
int a[N];
int main() {
int n,m;
cin>>n……