蓝桥杯算法提高VIP-盾神与积木游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>struct child{int need_f;int had_f;};void main(){ i…… 题解列表 2018年01月24日 1 点赞 0 评论 1896 浏览 评分:2.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 评论 1106 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:1.先将各位数字分解开,利用循环语句得到数字位数。 2.再实现“用空格分开每个数字 ”,“将数字倒序输出 ”。注意事项: 1.在利用循环语句分解各位数字时,每取…… 题解列表 2018年01月23日 2 点赞 0 评论 1370 浏览 评分:0.0
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//将a从下标n开始截取k个字符放到bvoid get_duang(char * a,char * …… 题解列表 2018年01月23日 2 点赞 0 评论 1952 浏览 评分:0.0
蓝桥杯算法训练VIP-确定元音字母位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i=1;int flag=0; char s; …… 题解列表 2018年01月23日 0 点赞 0 评论 1446 浏览 评分:8.0
蓝桥杯算法训练VIP-矩阵加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i,j; int m,n; int a[10…… 题解列表 2018年01月23日 0 点赞 0 评论 1589 浏览 评分:0.0
蓝桥杯算法训练VIP-特殊的数字四十 (C语言代码) 摘要:解题思路:注意事项:参考代码: int i; for(i=1000;i<=9999;i++){ if(i/1000+(i/100%10)+(i/10%10)+i%10==10…… 题解列表 2018年01月23日 0 点赞 0 评论 1299 浏览 评分:0.0
蓝桥杯算法训练VIP-新生舞会 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>struct student{ char number[21]; char nam…… 题解列表 2018年01月23日 0 点赞 0 评论 1547 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:for循环叠加求解注意事项:所要求的总路程是落地时所经过的路程,而不是落地后再次弹跳所经过的路程,即不需要再加上弹跳的高度!参考代码:#include <stdio.h>int main()…… 题解列表 2018年01月23日 0 点赞 0 评论 1436 浏览 评分:0.0
1001-1050难题 摘要:解题思路:5.8#include<stdio.h>main(){ int n, num, n1, n2, n3, n4, n5; scanf("%d",&n); num = (n - 1 ) / 10…… 题解列表 2018年01月23日 0 点赞 0 评论 1622 浏览 评分:0.0