蓝桥杯基础练习-数列排序-满分题解!! 摘要: #include int a[300]; void kuaisu(int x,int y){ if(xk ){ j--; }…… 题解列表 2019年12月08日 0 点赞 0 评论 879 浏览 评分:6.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:#include int main() { int n,i,a[10],c; scanf("%d",&n); for(i=0;i…… 题解列表 2019年12月09日 0 点赞 0 评论 552 浏览 评分:6.0
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要: 数据有问题 ```cpp #ifndef LOCAL #include #endif typedef long long LL; using namespace std; …… 题解列表 2019年12月10日 0 点赞 0 评论 858 浏览 评分:6.0
登陆验证问题(二)-题解(C语言代码) 自我感觉应用了模块化编程的思想 摘要:#include #include int check(char *a,char *b) { char user[]={"dotcpp"}; char passwor…… 题解列表 2019年12月10日 0 点赞 0 评论 592 浏览 评分:6.0
蛇行矩阵-题解(C++代码)打表法 摘要:这题后台数据很小 n最大是5 建议加强 所以我们可以打表过 #include using namespace std;//时间复杂度比较大n*100*100 int n,a[100…… 题解列表 2019年12月10日 0 点赞 0 评论 912 浏览 评分:6.0
弟弟的作业-题解(Python代码)超级简单,易懂!!! 摘要:**代码如下:** n=0 while True: try: x=input() x=x.replace(…… 题解列表 2019年12月11日 0 点赞 1 评论 1310 浏览 评分:6.0
[编程入门]三个数找最大值-题解(C语言代码) 摘要:#include void main() {int a,b,c,m; scanf("%d%d%d",&a,&b,&c); if(a>b) m=a; else m=b; if(c>m)…… 题解列表 2019年12月11日 0 点赞 0 评论 960 浏览 评分:6.0
Kanna-舍罕王的失算-C 摘要:象棋中一共64格 而两格又是之前的两倍,所以是 2^i 次方 代码实现 #include #include int main(void){ /…… 题解列表 2019年12月12日 0 点赞 1 评论 1129 浏览 评分:6.0
【密码】-题解(C++代码) 思路简单 摘要: //1.判断长度是否符合标准 //2.遍历字符串,设置了type1~4表示四种条件的满足情况,若在遍历过程中发现符合某种条件就设置它对应的type为1,遍历结束后将type1~4相加可以得…… 题解列表 2019年12月13日 0 点赞 0 评论 657 浏览 评分:6.0
Kanna-第一个HelloWorld程序!--C C++ 摘要:注意点星号数量与换行 C 代码: #include int main() { printf("**************************…… 题解列表 2019年12月13日 0 点赞 0 评论 936 浏览 评分:6.0