题解列表
第n小的质数(C++代码)
摘要: 参考代码
```cpp
#include
#include
using namespace std;
bool isPrime(in……
信息学奥赛一本通T1620-质因数分解(C++代码)
摘要:参考代码:#include<iostream>using namespace std;int findLargerPrimeFactor(int n) { int largerPrime = 0……
题解 2817: 级数求和
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; double s=0; c……
级数求和(光头强买冰箱)
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; double s=0; c……
2817: 级数求和
摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; double s=0; cin>>k; ……
计算多项式的值(C++代码)
摘要:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main(){ double x,s……