题解列表

筛选

3010: 奇偶数之和题解

摘要:参考代码:#include<iostream>using namespace std;int main(){   int n,s=0,t=0;   cin>>n;   for(int i=1;i<=n……

1766: 循环入门练习3题解

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

1765: 循环入门练习2题解

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

快读快写+比较器+合并校验

摘要:直接拿到数据,根据 做左区间进行比较排序,然后记录可合并的最大值 与 全局最大值, 比较可合并最大值与全局最大值是否一致即可java快读快写模板参考代码:import java.io.*;import……

字符串判等

摘要:解题思路:判断两字符串相等注意事项:参考代码:#include <stdio.h>#include<string.h>//为使用strlen函数#define N 1000int main() {  ……