题解列表

筛选

编写题解 2776: A*B问题

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

编写题解 1267: A+B Problem

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

编写题解 2749: Hello, World!

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    cout << "Hello world!" << endl;……

2853: 字符替换 c++ (string)

摘要:解题思路:注意事项:参考代码:    #include <bits/stdc++.h>    using namespace std;    const int N = 1e3;    typedef……

编写题解 2853: 字符替换

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){   string……