题解列表

筛选

Tom数-题解(C++代码)

摘要:题比较简单,就直接上代码了,注意事项都注释在代码上了#include<iostream> using namespace std; typedef long long LL; //把long lo……

Minesweeper -题解(C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<string>using namespace std;void Search(vec……

蛇行矩阵-题解(C语言代码)

摘要:解题思路:注意每一行和每一列的数字的改变!找出规律就很简单!注意事项:参考代码:#include<stdio.h>int a[100][100];//填充100行100列的数组! void f(){ ……