C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,m,k,a[100],s,count,l; scanf("%d",&m); for(i=2;i<…… 题解列表 2018年12月09日 0 点赞 0 评论 580 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m,n,i,t=0,s=0; double j; scanf("%d",…… 题解列表 2018年12月09日 0 点赞 0 评论 754 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void f(char a[100],char b[100],char c[200]){ int…… 题解列表 2018年12月09日 0 点赞 0 评论 451 浏览 评分:0.0
蓝桥杯2017年第八届真题-Excel地址 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std; int main(){ long data; st…… 题解列表 2018年12月09日 0 点赞 0 评论 797 浏览 评分:0.0
蓝桥杯2017年第八届真题-发现环 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int maxn = 1e5+5;int pre[maxn];int …… 题解列表 2018年12月09日 0 点赞 0 评论 979 浏览 评分:0.0
蓝桥杯2017年第八届真题-填字母游戏 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int T;string str ; int fun(string str){ i…… 题解列表 2018年12月09日 0 点赞 0 评论 1364 浏览 评分:5.0
未调用系统函数,相看过程的同学速来…… 摘要:解题思路:别人的函数是个“黑箱子”!原理还得自己摸索;注意事项:指针操作较多,有点绕参考代码#include<stdio.h>void bdx(int *a , int *b );//自定义函数,比较…… 题解列表 2018年12月09日 3 点赞 0 评论 1081 浏览 评分:4.0
C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:千篇一律,哎!注意事项:参考代码:新颖一点的方法:#include<stdio.h> int main() { printf("************************…… 题解列表 2018年12月08日 13 点赞 2 评论 1295 浏览 评分:4.5
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:三目运算看的眼花,太绕,头晕!注意事项:参考代码:#include<stdio.h>void bdx(int *a, int *b);//自定义函数,接收两个欲比较数的指针int main(…… 题解列表 2018年12月08日 2 点赞 0 评论 1095 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路: 分享一个链表注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct node{ int no; struct node*nex…… 题解列表 2018年12月08日 0 点赞 0 评论 506 浏览 评分:0.0