题解列表
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸
摘要:解题思路:注意事项:#include <stdio.h>#include <stdlib.h>int main(){ int n; &nb……
最大质因数(两种题型)
摘要:1.原题目的题解:```cpp#includeusing namespace std;// 计算一个数的最大质因数int maxPrimeFactor(int x) { ……