编写题解 1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> #define n 3 //定义头文件 int main() { in…… 题解列表 2023年01月05日 0 点赞 0 评论 287 浏览 评分:0.0
编写题解 1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() { int i,j,k,l; …… 题解列表 2023年01月05日 0 点赞 0 评论 267 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() { int i, j; for (i …… 题解列表 2023年01月05日 0 点赞 0 评论 228 浏览 评分:0.0
2913: 整数去重 摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;…… 题解列表 2023年01月05日 0 点赞 3 评论 452 浏览 评分:7.3
2909: 直方图 摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[10001];…… 题解列表 2023年01月05日 0 点赞 0 评论 457 浏览 评分:9.9
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct student { int chengji; char name[20]; }; …… 题解列表 2023年01月05日 0 点赞 0 评论 574 浏览 评分:9.9
2903: 不高兴的津津 摘要:```cpp #include #include using namespace std; int main() { int day,arr1[8],arr2[8]; m…… 题解列表 2023年01月05日 0 点赞 0 评论 523 浏览 评分:9.9
2904: 谁拿了最多奖学金 摘要:```cpp #include #include #include using namespace std; struct Stu { string name; int…… 题解列表 2023年01月05日 0 点赞 0 评论 384 浏览 评分:9.9
自定义函数之字符串拷贝(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<assert.h>char* my_strcpy( char* dest, const char* src,int m…… 题解列表 2023年01月05日 0 点赞 0 评论 276 浏览 评分:0.0
蓝桥杯基础练习VIP-2n皇后问题(Python语言) 摘要:解题思路:先放置黑皇后,黑皇后放置完毕后,在黑皇后已占位的基础上开始放置白皇后,一个回合实际上既包括放置黑皇后也包括放置白皇后,待黑白皇后都放置完毕后,再恢复现场,进入下一轮参考代码:from col…… 题解列表 2023年01月05日 0 点赞 0 评论 437 浏览 评分:0.0