题解列表
编写题解 1131: C语言训练-斐波纳契数列---使用STL的方法
摘要:```cpp
#include
#include
using namespace std;
int Fabona(int a)
{
if (a == 0 || a == 1)
……
寻找矩阵最值(C++)简单思路
摘要:解题思路:用二维数组,具体看代码注释注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,i,j,t,a[10][1……
编写题解 1055: 二级C语言-进制转换
摘要:```cpp
#include
#include
using namespace std;
int main()
{
stacks;
int a;
cin >> a;
……
1158: 作业调度方案
摘要:```cpp
#include
using namespace std;
struct node
{
int id,cost;
}
w[21][21];
int m,n,ord……