蓝桥杯算法提高VIP-寻找三位数 (C语言代码)dfs 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int b[10];int a[10];void dfs(int n){ int i,j,s,ss,sss; if(n==10) { …… 题解列表 2018年02月24日 0 点赞 0 评论 1045 浏览 评分:0.0
蓝桥杯算法提高VIP-彩票 (C语言代码) 快快快 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ans[7];int s[34];int main(){ int n,i,j,sum; int t; scanf("%d",&n…… 题解列表 2018年02月24日 0 点赞 0 评论 1055 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:题目不太难,理清思路就好注意事项:注意x的取值范围参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { …… 题解列表 2018年02月24日 0 点赞 0 评论 698 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用if语句列出可能的分数段,然后输出对应的成绩即可注意事项:分数段的划分参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if…… 题解列表 2018年02月24日 0 点赞 0 评论 759 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:用一个do-while循环来算出位数,到最后一位数字取余10一定为0,所以可以凭此求出位数。再利用位数来算出每一位的数字。注意事项:倒序输出参考代码:#include<stdio.h>int…… 题解列表 2018年02月24日 0 点赞 0 评论 536 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include"iostream"using namespace std;int main(){ int i;//表示水花仙树 int a1, a2, a3;//表示拆…… 题解列表 2018年02月24日 0 点赞 0 评论 931 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:来自萌新傻大粗的解题,勿喷0.0注意事项:参考代码:#include<stdio.h> int main() { int i,a,b,c,d,e; scanf("%d",&i)…… 题解列表 2018年02月24日 0 点赞 0 评论 707 浏览 评分:0.0
蛇行矩阵 (C语言代码)(逻辑思维解题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n,m; int a,b; scanf("%d",&n); a…… 题解列表 2018年02月24日 1 点赞 0 评论 905 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; printf("input number:"); while(scanf("%d…… 题解列表 2018年02月24日 0 点赞 0 评论 527 浏览 评分:0.0
蓝桥杯算法训练VIP-集合运算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[1000],b[1000];void Order(int p[1000],int k){ int i,j,s; for(i=…… 题解列表 2018年02月24日 0 点赞 0 评论 1023 浏览 评分:0.0