蓝桥杯算法训练-大小写转换-题解(C++代码) 摘要: #include using namespace std; int main() { string name;cin>>name; …… 题解列表 2020年03月23日 0 点赞 0 评论 754 浏览 评分:0.0
[编程入门]自定义函数之整数处理-题解(C语言代码) 摘要:```c #define _CRT_SECURE_NO_WARNINGS #include #include #include void test03(int arr[10]); voi…… 题解列表 2020年03月23日 0 点赞 0 评论 716 浏览 评分:0.0
Tom数-题解(C语言代码) 摘要:#include #include int main(){ char num[65536]; int i,a[65536] = {0},plot_num,temp; while(s…… 题解列表 2020年03月23日 0 点赞 0 评论 933 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量-题解(C语言代码) 摘要:#include int main(){ int a,b,c,i,min; scanf("%d %d %d",&a,&b,&c); if(a > b && c > b){ …… 题解列表 2020年03月23日 0 点赞 0 评论 464 浏览 评分:0.0
蓝桥杯算法提高VIP-摆花-题解(C++代码) 摘要: #include #include #include using namespace std; i…… 题解列表 2020年03月23日 0 点赞 0 评论 766 浏览 评分:0.0
程序员的表白-题解(C语言代码) 摘要:#include int main(){ int a,i,j; while(scanf("%d",&a) != EOF){ for(j = 0;j < a+1;j++){ …… 题解列表 2020年03月23日 0 点赞 0 评论 700 浏览 评分:0.0
Minesweeper -题解(C语言代码) 摘要: 1、扫雷游戏,符号'.'表示安全,符号'*'表示地雷,输入0…… 题解列表 2020年03月23日 0 点赞 0 评论 1339 浏览 评分:0.0
数据结构-快速排序-题解(C++代码) 摘要:```cpp #include using namespace std; //快速排序p300 int partition(int a[],int low,int high){ //快排…… 题解列表 2020年03月23日 0 点赞 0 评论 970 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换-题解(Python代码) 摘要:```python #时间转换 t=int(input()) h=m=s=0 if t…… 题解列表 2020年03月23日 0 点赞 0 评论 612 浏览 评分:0.0
回文串-题解(C语言代码) 摘要:#include #include int main(){ char str[256]; int len,flag = 1,i; scanf("%s",str); len = …… 题解列表 2020年03月23日 0 点赞 0 评论 926 浏览 评分:0.0