蓝桥杯算法训练VIP-确定元音字母位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i=1;int flag=0; char s; …… 题解列表 2018年01月23日 0 点赞 0 评论 888 浏览 评分:8.0
蓝桥杯基础练习VIP-回形取数 (C++代码) 摘要:#include<iostream> #include<cstring> using namespace std ; int a[300][300],first[300][300],m,n,r=…… 题解列表 2018年01月23日 0 点赞 0 评论 1103 浏览 评分:9.9
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//将a从下标n开始截取k个字符放到bvoid get_duang(char * a,char * …… 题解列表 2018年01月23日 2 点赞 0 评论 1377 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:1.先将各位数字分解开,利用循环语句得到数字位数。 2.再实现“用空格分开每个数字 ”,“将数字倒序输出 ”。注意事项: 1.在利用循环语句分解各位数字时,每取…… 题解列表 2018年01月23日 2 点赞 0 评论 870 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:#include<iostream> using namespace std ; void baoshi(int x) ; int main() { int h,m ; cin>>h>…… 题解列表 2018年01月23日 0 点赞 0 评论 984 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; int a,i; int number=0; scanf("%d",…… 题解列表 2018年01月23日 0 点赞 0 评论 631 浏览 评分:0.0
蓝桥杯算法提高VIP-盾神与积木游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>struct child{int need_f;int had_f;};void main(){ i…… 题解列表 2018年01月24日 1 点赞 0 评论 1292 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int number[10],math[10]; int i,n,t=0,z=0,p; …… 题解列表 2018年01月24日 0 点赞 0 评论 564 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int func1(int a){ int i,t=0; for(i=2;i<a;i++) { if(a%i==0) { …… 题解列表 2018年01月24日 0 点赞 0 评论 858 浏览 评分:0.0
蓝桥杯算法训练VIP-传球游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i,j,m,n; int a[31][31]={0…… 题解列表 2018年01月24日 0 点赞 0 评论 923 浏览 评分:0.0