题解列表

筛选

2817: 级数求和

摘要:``` #include using namespace std; int main(){ int k; double sn=0; cin>>k; for( int i=1; ;……

链表合并c++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;typedef int Status;typedef struct lnode{    int……

2749: 你好,世界!

摘要:#Hello World! ##参考代码: ``` #include using namespace std; int main(){ string a="Hello",b="World……

判断是否为两位数

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

2880: 计算鞍点

摘要:#计算鞍点 ##参考代码: ``` #include using namespace std; int arr[1000][1000],sum=0; int main(){ for(i……