题解列表

筛选

小O的图案 (C++代码)

摘要:解题思路:先输出n再打印图。。。注意事项:参考代码:#include <iostream> #include <stdio.h> #define N 200 using namespace ……

蛇行矩阵 (C++代码)

摘要:解题思路:注意事项:参考代码#include<iostream>#include<cmath>//#include<iomanip>#include<stdio.h>#include<string>u……

【数组的距离】 (C++代码)

摘要:解题思路:排序后判断两个数组大小是否重合注意事项:使用sort排序方便一点参考代码:#include<bits/stdc++.h>using namespace std;bool cmp(int a,……