二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```cpp #include using namespace std; #define N 100 int main() { int a,b[N][N],max,max_i,max_j…… 题解列表 2020年04月19日 0 点赞 0 评论 624 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:```python from math import * x=eval(input()) if x…… 题解列表 2020年04月19日 0 点赞 0 评论 692 浏览 评分:0.0
二级C语言-自定义函数-题解(C语言代码) 摘要:```cpp #include #include #include using namespace std; double fact(double n); double mypow(dou…… 题解列表 2020年04月19日 0 点赞 0 评论 666 浏览 评分:0.0
校门外的树-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int L,M; int a,b; int num[10002]; …… 题解列表 2020年04月19日 0 点赞 0 评论 1126 浏览 评分:6.5
检查一个数是否为质数-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ int n; cin>>n; bool b=t…… 题解列表 2020年04月19日 0 点赞 0 评论 734 浏览 评分:0.0
敲七游戏-题解(C++代码) 摘要:```cpp #include using namespace std; int v[10]; int f(int n){//获取位数 int sum=1; while(1…… 题解列表 2020年04月19日 0 点赞 0 评论 954 浏览 评分:0.0
数字统计-题解(C++代码) 摘要:```cpp #include using namespace std; int v[10]; int f(int n){//获取位数 int sum=1; while(1…… 题解列表 2020年04月19日 0 点赞 0 评论 1245 浏览 评分:5.3
数列排序-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ queue q;//大的用队列 st…… 题解列表 2020年04月19日 0 点赞 0 评论 719 浏览 评分:5.3
排列-题解(C++代码) 摘要:```cpp #include using namespace std; void print_1(int a,int b,int c,int d){ cout…… 题解列表 2020年04月19日 0 点赞 0 评论 853 浏览 评分:0.0
蛇行矩阵-题解(C++代码)(应该只有我自己看得懂。。。) 摘要:```cpp #include using namespace std; int main() { int N,M; int hang_init = 2,hang_v; int…… 题解列表 2020年04月19日 0 点赞 0 评论 883 浏览 评分:0.0