题解列表

筛选

综合测验1【编程入门】Sn的公式求和

摘要:解题思路:先定义函数,然后利用while语句,再采用for循环完成语句注意事项:注意for的嵌套位置参考代码:#include<stdio.h>#include<math.h> int main(){……

蓝桥杯算法提高VIP-前10名

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