题解列表

筛选

利用数组的方法

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

编写题解 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;……