三位数反转-题解(C++代码) 摘要:# 题解 **以后每周五都会更新一个小程序源代码,敬请期待!** **这个是一个可以翻转所有数字的程序** ```cpp #include using namespace std; in…… 题解列表 2020年04月25日 0 点赞 1 评论 1507 浏览 评分:9.9
通过数组连接 自定义函数之字符串连接-题解(C语言代码) 摘要:# 使用数组连接字符串 **如果需要,可以连string.h函数库都不调用(转为单个字符输入或用循环检查) ## 请注意最后的空字符插入 ```c #include #include…… 题解列表 2020年04月25日 0 点赞 0 评论 1368 浏览 评分:8.7
蓝桥杯2015年第六届真题-赢球票-题解(C++代码)-------------队列的出队入队,很简单的 摘要: #include #include #include using namespace std; #define N 1000 …… 题解列表 2020年04月25日 0 点赞 0 评论 1242 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C++代码) 摘要:``````#include #include #include #include #include using namespace std; int main() { st…… 题解列表 2020年04月25日 0 点赞 0 评论 1007 浏览 评分:0.0
用筛法求之N内的素数。 -题解(C语言代码) 摘要:```c #include #include //筛选法求素数 int main() { int n,i,j; scanf("%d",&n); for(i=2;…… 题解列表 2020年04月25日 0 点赞 0 评论 736 浏览 评分:9.0
优质题解 Manchester-【愚蠢的摄影师】 摘要:#### 解题思路: 1. 图1.0:  1. 上面图1.0为N=1到N=6时所有满足相邻年龄…… 题解列表 2020年04月25日 0 点赞 2 评论 1546 浏览 评分:9.9
蓝桥杯2015年第六届真题-切开字符串-题解(C++代码) 摘要:```cpp #include #include using namespace std; bool pan_huiwen(string s){ int len=s.size(); …… 题解列表 2020年04月25日 0 点赞 0 评论 1446 浏览 评分:7.3
蓝桥杯2014年第五届真题-重复模式-题解(C语言代码) 摘要: #include #include int main(void) { char str[1000]; int i = 0,…… 题解列表 2020年04月25日 1 点赞 0 评论 1001 浏览 评分:9.9
C语言训练-求具有abcd=(ab+cd)2性质的四位数-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ for(int i=1000;i…… 题解列表 2020年04月25日 0 点赞 0 评论 981 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要: # 直接排序数组的方法 ```c #include //直接调整数组中数字的位置,使得排列有序 int main(int argc, char* argv[]) { …… 题解列表 2020年04月25日 0 点赞 1 评论 2048 浏览 评分:9.9