蓝桥杯算法训练VIP-新生舞会 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>struct student{ char number[21]; char nam…… 题解列表 2018年01月23日 0 点赞 0 评论 1299 浏览 评分: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 评论 1051 浏览 评分:0.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 评论 1329 浏览 评分:0.0
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//将a从下标n开始截取k个字符放到bvoid get_duang(char * a,char * …… 题解列表 2018年01月23日 2 点赞 0 评论 1692 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:1.先将各位数字分解开,利用循环语句得到数字位数。 2.再实现“用空格分开每个数字 ”,“将数字倒序输出 ”。注意事项: 1.在利用循环语句分解各位数字时,每取…… 题解列表 2018年01月23日 2 点赞 0 评论 1118 浏览 评分: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 评论 1415 浏览 评分: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 评论 863 浏览 评分:0.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 评论 794 浏览 评分: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 评论 1291 浏览 评分: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 评论 1132 浏览 评分:0.0