蓝桥杯基础练习VIP-阶乘计算 (数组描述大数据的阶乘运算,个人觉得数组和字符串都很好用,值得看一下) 摘要:解题思路:定义一个数组,存储每个位上的数如a[0]代表个位上的数a[1]代表十位上的数,接下来同理Js函数是对阶乘进行计算并把计算结果存储到数组中去现在对js数组进行讲解1》外部的for循环显然是用于…… 题解列表 2018年12月09日 4 点赞 3 评论 754 浏览 评分:0.0
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 评论 628 浏览 评分:0.0
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 评论 678 浏览 评分: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 评论 893 浏览 评分: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 评论 530 浏览 评分:0.0
蓝桥杯2017年第八届真题-Excel地址 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std; int main(){ long data; st…… 题解列表 2018年12月09日 0 点赞 0 评论 1004 浏览 评分: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 评论 1117 浏览 评分: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 评论 1485 浏览 评分:5.0
未调用系统函数,相看过程的同学速来…… 摘要:解题思路:别人的函数是个“黑箱子”!原理还得自己摸索;注意事项:指针操作较多,有点绕参考代码#include<stdio.h>void bdx(int *a , int *b );//自定义函数,比较…… 题解列表 2018年12月09日 3 点赞 0 评论 1255 浏览 评分:4.0
C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:千篇一律,哎!注意事项:参考代码:新颖一点的方法:#include<stdio.h> int main() { printf("************************…… 题解列表 2018年12月08日 13 点赞 2 评论 1426 浏览 评分:4.5