题解列表

筛选

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……