蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:#include<iostream> using namespace std ; void baoshi(int x) ; int main() { int h,m ; cin>>h>…… 题解列表 2018年01月23日 0 点赞 0 评论 1037 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:1.先将各位数字分解开,利用循环语句得到数字位数。 2.再实现“用空格分开每个数字 ”,“将数字倒序输出 ”。注意事项: 1.在利用循环语句分解各位数字时,每取…… 题解列表 2018年01月23日 2 点赞 0 评论 908 浏览 评分:0.0
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//将a从下标n开始截取k个字符放到bvoid get_duang(char * a,char * …… 题解列表 2018年01月23日 2 点赞 0 评论 1404 浏览 评分:0.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 评论 1145 浏览 评分:9.9
蓝桥杯算法训练VIP-确定元音字母位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i=1;int flag=0; char s; …… 题解列表 2018年01月23日 0 点赞 0 评论 931 浏览 评分: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 评论 1076 浏览 评分: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 评论 832 浏览 评分:0.0
蓝桥杯算法训练VIP-新生舞会 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>struct student{ char number[21]; char nam…… 题解列表 2018年01月23日 0 点赞 0 评论 949 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:for循环叠加求解注意事项:所要求的总路程是落地时所经过的路程,而不是落地后再次弹跳所经过的路程,即不需要再加上弹跳的高度!参考代码:#include <stdio.h>int main()…… 题解列表 2018年01月23日 0 点赞 0 评论 877 浏览 评分: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 评论 1143 浏览 评分:0.0