题解列表

筛选

快 速 排 序

摘要:```c #include #include int gg(const void*x,const void*y) { return *(int*)x-*(int*)y; } int m……

C++的通俗易懂方法

摘要:解题思路:拆解题目的过程,一次接一次地分析反弹的过程,从而能分析出反弹过程的共性和不同点注意事项:参考代码:#include <iostream>#include<cmath>#include<iom……

2797: 最高的分数

摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; ……

2969: 打印月历

摘要:```cpp #include using namespace std; int fun(int a,int b,int q); int main() { int i,j,m,n,……

2953: 特殊日历计算

摘要:```cpp #include #include using namespace std; int a[100],yue[13]={0,31,28,31,30,31,30,31,31,30,3……