#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的判题却没给模板,不过可以类比一下
……没审清题,其实只需要写子程序
这道题明明有Python的判题却没给模板,不过可以类比一下