[编程入门]自定义函数之整数处理-题解(Python代码) 摘要:```python def shuru(): ak=list(map(int,input().split())) chuli(ak) def chuli(ak): …… 题解列表 2020年02月07日 0 点赞 0 评论 934 浏览 评分:6.0
蓝桥杯算法提高VIP-输出九九乘法表-题解(C语言代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年02月07日 0 点赞 0 评论 823 浏览 评分:0.0
C语言训练-邮票组合问题*-题解(C语言代码) 摘要:```cpp #include int main(int argc, char const *argv[]) { int data[50] = { 0 }; //定义数组存储…… 题解列表 2020年02月07日 0 点赞 1 评论 1258 浏览 评分:9.9
P1001-题解(C语言代码) 摘要: ```c #include #include int main() { int N,K,i,j,m,tmp; scanf("%d %d\n",&N,&K);//c…… 题解列表 2020年02月07日 0 点赞 0 评论 667 浏览 评分:0.0
JakeLin-题解1426:蓝桥杯历届试题-九宫重排 (C++代码) 摘要:```cpp #include #include #include #include #include #include #include using namespace std; …… 题解列表 2020年02月07日 0 点赞 0 评论 1030 浏览 评分:9.6
蓝桥杯算法提高VIP-模拟计算器-题解(C语言代码) 摘要: #include "stdio.h" int main() { int a,b; char c; scanf("%d %d %c",&a,&b,&c); switch…… 题解列表 2020年02月07日 0 点赞 0 评论 650 浏览 评分:0.0
信息学奥赛一本通T1309-回文数-题解(Java代码) 跟C语言一样的写法 摘要:高精度题的思路是把数据存于数组进行处理,其个别题型在Java语言中可以使用BigInteger BigDecimal 进行处理。 C语言解决这题型时一般采用将数组的数据长度存放在A[0]头元素,Ja…… 题解列表 2020年02月07日 0 点赞 0 评论 1114 浏览 评分:7.3
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:简单题,就直接上代码了,不是最简,未优化 ```python def input_(): s = input() ls = input().split() metho…… 题解列表 2020年02月07日 0 点赞 0 评论 1179 浏览 评分:9.9
蓝桥杯算法提高VIP-产生数-题解(C++代码) 摘要:解释一下为啥要用Floyd: 如果要替换的数字为: 1 -> 2 1 -> 5 2 -> 3 那么存在替换数字的传递关系,如:1 -> 2 -> 3. 另外,整数 n(n< 10^30),…… 题解列表 2020年02月07日 0 点赞 0 评论 820 浏览 评分:0.0
Dinner-题解(C++代码) 摘要: #include #include using namespace std; int main(){ int n; cin>>n; string tableware[4]…… 题解列表 2020年02月07日 0 点赞 0 评论 1020 浏览 评分:0.0