题解列表

筛选

简单又实用

摘要:```cpp #include #include // 包含cmath头文件来使用pow函数 using namespace std; int main() { int R, ……

简单又实用

摘要:参考代码:#include <iostream>using namespace std;int main() {    int n;    cin >> n;    int known_sum = 0……

简单又实用

摘要:参考代码:#include <iostream>#include <cmath>  // 包含cmath头文件来使用M_PI常量using namespace std;int main() {    ……

题解 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<stdio.h>int main(){    int n,a;    scanf("%d", &n);    while (n--)    {     ……