蓝桥杯基础练习VIP-Sine之舞-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; string Int_to_String(int n) { ostringstream stre…… 题解列表 2020年04月11日 0 点赞 0 评论 1194 浏览 评分:7.0
[编程入门]还是接着用选择排序算法加上字符串操作函数来实现 摘要:```c #include #include #define N 50 #define M 3 int main(void) { char s[M][N],s1[N]; …… 题解列表 2020年04月11日 0 点赞 0 评论 813 浏览 评分:8.0
[编程入门]猴子吃桃的问题-题解(C语言代码) 摘要:#include int main() { int a, sum = 1; scanf("%d",&a); a = a - 1; while(a--…… 题解列表 2020年04月11日 0 点赞 0 评论 606 浏览 评分:0.0
Dinner-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; // "bowl", "knife", "fork" ,"ch…… 题解列表 2020年04月11日 0 点赞 0 评论 658 浏览 评分:0.0
统计字符个数-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char a[11]; cin.getline(a,11…… 题解列表 2020年04月11日 0 点赞 0 评论 793 浏览 评分:0.0
计算两点间的距离-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数凑字数 ```python import math while True: x,y,z,w=map(int,input().split()) prin…… 题解列表 2020年04月11日 0 点赞 0 评论 1490 浏览 评分:6.0
蓝桥杯算法训练VIP-字符删除-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a; cin>>a; char b; ci…… 题解列表 2020年04月11日 0 点赞 0 评论 659 浏览 评分:9.9
P1085-题解(C语言代码) 摘要: #include #include int f(int a[], int index, int n, int k) { int i =…… 题解列表 2020年04月11日 0 点赞 0 评论 822 浏览 评分:9.9
绝对值排序-题解(Python代码) 摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()…… 题解列表 2020年04月11日 0 点赞 1 评论 1246 浏览 评分:7.3
蓝桥杯算法提高VIP-扫雷-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; char matrix[101][101]; char ans[101][101]; char che…… 题解列表 2020年04月11日 0 点赞 0 评论 529 浏览 评分:0.0