蓝桥杯算法提高VIP-欧拉函数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstdio> using namespace std; cons…… 题解列表 2019年03月22日 1 点赞 0 评论 1137 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int vowel(char a[]){ int i, l; l = strlen(a)…… 题解列表 2019年03月22日 0 点赞 0 评论 773 浏览 评分:0.0
蓝桥杯2013年第四届真题-公式求值 (超时了,代码应该正确吧,菜鸟做法) 摘要:解题思路: 大一,刚学用函数实现模块化程序设计,可以利用一下这个;注意事项: 我感觉就是需要注意一下for循环那里参考代码:#include <stdio.h>#include <math.h>in…… 题解列表 2019年03月22日 0 点赞 3 评论 1439 浏览 评分:6.0
蓝桥杯算法提高VIP-棋盘多项式 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; con…… 题解列表 2019年03月22日 0 点赞 0 评论 1110 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:%n计数。注意事项:注意判断最后一个数不要加空格!参考代码:#include <stdio.h>int main(){ char str[5]; int x; scanf("%s%n",&s…… 题解列表 2019年03月22日 0 点赞 1 评论 2487 浏览 评分:9.6
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int strcmp(char w[],char n[]);int main(){ char w[100]; char …… 题解列表 2019年03月22日 0 点赞 0 评论 975 浏览 评分:0.0
数数字 (简单数学) 摘要:解题思路:这道题坑了我一把,比赛的最后一题emmmm这道题目变16进制变回10进制其实就是 一个数字*16+下一个数字又因为 16*x%15 = x所以事实上就是由n加到m再取余而又因为每15…… 题解列表 2019年03月22日 0 点赞 0 评论 1204 浏览 评分:0.0
蓝桥杯算法训练VIP-装箱问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <iostream> #include <limits.h> #include <algorithm> #…… 题解列表 2019年03月22日 0 点赞 0 评论 895 浏览 评分:0.0
蓝桥杯2013年第四届真题-危险系数 (C++代码)dfs 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> #include<cstring> using namespace std; const …… 题解列表 2019年03月22日 0 点赞 0 评论 962 浏览 评分:0.0
蓝桥杯算法提高VIP-数的划分 (C++代码) 摘要:解题思路:dp/mdfs注意事项:参考代码:#include <stdio.h> #include <iostream> #include <vector> #define N 110 u…… 题解列表 2019年03月22日 0 点赞 0 评论 562 浏览 评分:0.0