题解列表

筛选

数列-题解(Java代码)

摘要:没有java题解,我来写一个 import java.util.Scanner; public class Main { public static void main(String[] ……

DNA-题解(C语言代码)

摘要:#include #define max 20 int c[max],r[max]; int main() { int N; scanf("%d",&N); for(int k=0……

Minesweeper -题解(C++代码)

摘要:#include #include using namespace std; int xx[ ] = {-1, -1, -1, 0, 0, 1, 1, 1};//周边的数组一维下标 int y……