2 条题解

  • 1
    @ 2025-10-8 9:11:19

    这题用了我3个函数,太恐怖了

    #include<bits/stdc++.h>
    using namespace std;
    int sum(int a,int b){
    	cin>>a>>b;
        return a+b;
    }
    int real(int a,int b){
    	int c;
    	c=sum(a,b);
    	return c;
    }
    int main(){
        int a,b;
        cout<<real(a,b);
        return 0;
    }
    

    代码语言:C++

    信息

    ID
    20441
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    (无)
    递交数
    121
    已通过
    83
    上传者