题解列表

筛选

数列问题 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) ……

奖学金 (C语言代码)

摘要:解题思路:能力有限,感觉算是比较简洁的了。注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; struct……

班级人数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { float a,b; while(cin>>a>>……

第几天 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int check(int n) { if(……
优质题解

蓝桥杯算法提高VIP-欧拉函数 (C++代码)

摘要:解题思路:                题目我看的云里雾里,欧拉函数我之前用到过,用来计算某个 N 作为分母时它的真分子的个数,就是这个式子。              我们来发散一下题目:    ……