转换的问题来了-题解(C语言代码)(任何进制) 摘要: ## 在数组a中定义余数可处理任何进制** ## 代码 ```c #include int b[1000]={0}; int main() { int m=0; cha…… 题解列表 2019年11月24日 0 点赞 1 评论 869 浏览 评分:9.9
求更好判断空格的方法 摘要:```python def res1(): for i in a[::-1]: if i==' ': continue pri…… 题解列表 2019年11月24日 0 点赞 1 评论 676 浏览 评分:9.3
求优化(感觉能优化) 摘要:```python def ds(a): sums=0 while a>1: sums+=int(a/3) if a%3==1: …… 题解列表 2019年11月24日 0 点赞 0 评论 1030 浏览 评分:2.0
蓝桥杯基础练习VIP-矩形面积交-题解(C语言代码) 摘要:#include double max(double x,double y) { double max; if(x>y) max=x; else max=y; retur…… 题解列表 2019年11月24日 0 点赞 0 评论 743 浏览 评分:0.0
二级C语言-计算素数和-题解(C语言代码) 摘要: #include char isprime(int num) { int i; for(i = 2; i < num; i++) { …… 题解列表 2019年11月24日 0 点赞 0 评论 655 浏览 评分:0.0
[搞比利]2037题-30.字符串比较-题解map函数(C++代码) 摘要: #include using namespace std; int main(){ int i,n,sum=0; cin>>n,i; mapv; for(i=1;i>…… 题解列表 2019年11月24日 0 点赞 0 评论 982 浏览 评分:9.9
C语言考试练习题_一元二次方程 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { double a,b,c; doubl…… 题解列表 2019年11月24日 0 点赞 0 评论 689 浏览 评分:0.0
蓝桥杯算法提高VIP-前10名-题解(Python代码) python 摘要:```python n = input()#输入 arr = input().split()#输入 arr = [int(x) for x in arr]#字符转整型 arr.sort…… 题解列表 2019年11月24日 0 点赞 0 评论 1150 浏览 评分:8.0
蓝桥杯算法提高VIP-色盲的民主-题解(C语言代码)值得参考 摘要: #include #include #include typedef struct SColor{ char w[21]; i…… 题解列表 2019年11月24日 0 点赞 0 评论 1555 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码)AC代码 值得参考 摘要: #include #include #define N 5 int main() { int i,j,k; char x[N][…… 题解列表 2019年11月24日 0 点赞 0 评论 1222 浏览 评分:9.9