数据结构-归并排序 (C++代码) 摘要:解题思路:注意事项:参考代码:苍天啊苍天,我又一次冒充成功:#include <cstdio> #include <algorithm> #include <queue>//头文件 using …… 题解列表 2018年09月25日 1 点赞 0 评论 1259 浏览 评分:2.0
输出字符'A'个数 (C++代码) 摘要:解题思路:注意事项:不要打多于的代码;参考代码:#include<iostream>using namespace std;int main(){ int a,i,n; cin>>n; …… 题解列表 2018年09月25日 3 点赞 0 评论 1005 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:用for循环输入China字符串,再将每一个字符串中的字符+4,最后再for循环输出结果注意事项:每一个参考代码:#include<stdio.h>int main(){ int i…… 题解列表 2018年09月25日 0 点赞 0 评论 557 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C++代码) 摘要:解题思路:好像没有对string排序的,我来写一个注意事项:小心就行了参考代码:#include<iostream> #include<string> #include<algorithm> u…… 题解列表 2018年09月25日 2 点赞 0 评论 1739 浏览 评分:9.5
汽水瓶 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int cirs(int n);int main(){ int a[10],i=0; …… 题解列表 2018年09月25日 0 点赞 0 评论 607 浏览 评分:0.0
带解题思路 题解1512:蓝桥杯算法提高VIP-多项式输出 (C语言代码) 摘要:解题思路:注意事项:除啦全输入0,没有输出结果(题解也没有输出),其他哪里错误我看不出来....参考代码:#include<stdio.h>void print_we(int n,int a[]){…… 题解列表 2018年09月25日 4 点赞 0 评论 1352 浏览 评分:0.0
王牌花色 (C++代码) 摘要:解题思路:与C语言的思路一样,不过保存字符串用的是string类。注意事项:参考代码:#include <iostream> using namespace std; int dianshu(st…… 题解列表 2018年09月25日 0 点赞 0 评论 1576 浏览 评分:0.0
王牌花色 (C语言代码) 摘要:解题思路:先判断是不是王牌花色,如果都是,或者都不是才比较点数。参考代码:#include<stdio.h> #include<string.h> int dianshu(char *play) …… 题解列表 2018年09月25日 0 点赞 0 评论 1243 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:首先找到N以内那些数是完数,再把它们除本身以为的因子找出来按格式输出。继续判断下一个数。注意事项:注意大括号,注意换行,我的做法可能有点笨。但是应该容易理解。参考代码:#include<st…… 题解列表 2018年09月24日 4 点赞 8 评论 857 浏览 评分:9.4
蓝桥杯算法提高VIP-分数统计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void px(int a[],int x){ int i,j,max,t; for(i=0;i<x;i++) { max=i; f…… 题解列表 2018年09月24日 4 点赞 0 评论 1101 浏览 评分:0.0