蓝桥杯算法提高VIP-第二大整数 (C语言代码)新手可以来看一下:冒泡法!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,a[20]; int m,n; while(scanf("%d",&a[i])!=EOF) { …… 题解列表 2019年03月06日 0 点赞 3 评论 624 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路: S1 = S 第一天 吃 1/2 * S1 + 1 剩 S2 = S1 - (1/2 * S1 + 1) = 1/2 * S1 - 1   题解列表 2019年03月06日 0 点赞 0 评论 597 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 可以拓展你的运用哦 摘要:解题思路:利用字符串数组遇到 '\0'停止录入。再利用strcmp函数比较即可注意事项:排序的运用参考代码:#include<stdio.h>#include<stdlib.h>#in…… 题解列表 2019年03月06日 0 点赞 0 评论 993 浏览 评分:0.0
BREEZE------之你猜 有没有小技巧系列(用的C) 摘要:一个三位数可以拆成三位来,然后利用math。h里的pow函数就可以方便的解决问题啦!#include<stdio.h>#include<math.h>int main(){ int n,s1,s…… 题解列表 2019年03月06日 0 点赞 0 评论 1038 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:笨办法,好懂#include<stdio.h>int main(){int i,t,n,a[3][3]; for(i=0;i<3;i++){ for(…… 题解列表 2019年03月06日 5 点赞 0 评论 580 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C++代码) 摘要:解题思路:一个递归注意事项:参考代码:#include<iostream>using namespace std;int fun(int a1,int n1){ if(n1==1) return a1…… 题解列表 2019年03月06日 0 点赞 0 评论 772 浏览 评分:0.0
永远的丰碑 (C++代码)永远的水题 摘要:解题思路: 永远的水题目参考代码:#include<iostream> using namespace std; int main() { int n; while(c…… 题解列表 2019年03月07日 0 点赞 0 评论 929 浏览 评分:0.0
蓝桥杯基础练习VIP-Huffuman树 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <queue> #include <cstdio> using namespace std; const…… 题解列表 2019年03月07日 0 点赞 0 评论 862 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <iostream> using namespace std; string A[20] = {"zero…… 题解列表 2019年03月07日 0 点赞 0 评论 746 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月07日 0 点赞 0 评论 892 浏览 评分:0.0