2 条题解

  • 0
    @ 2024-1-11 15:16:28
    #include<iostream>
    using namespace std;
    struct xuanshou
    {
    	int t;
    	int y;
    	int d;
    };
    int main(){
    	xuanshou a;
    	int n;
    	cin>>n;
    	for(int i=1;i<=n;i++){
    		cin>>a.t>>a.y>>a.d;
    		cout<<a.t+a.y+a.d<<endl;
    	}
    	
    	return 0;
    }
    
    • 1

    蓝桥杯编程等级考试C++16级_模仿秀

    信息

    ID
    561
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    19
    已通过
    12
    上传者