108. A+B Problem Templated

Andrew-Malcom
#include<bits/stdc++.h>
using namespace std;
class Solution {
public:
    Solution(){}
    ~Solution(){}
    int solve(int a, int b) {
        return a+b;
    }
};
int main()
{
    Solution* s = new Solution();
    int a,b;cin>>a>>b;
    cout<<s->solve(a,b);
}
告白于荆州

这道题明明有Python的判题却没给模板,不过可以类比一下

eujrepus

……没审清题,其实只需要写子程序

你当前正在回复 博客/题目
存在问题!