当前位置:编程学习 > C/C++ >>

UVa-Ecological Premium

 C++代码:


 

include <iostream>  
using namespace std; 
int main() 
{ 
    int a,b,c; 
    int n,f; 
    while(cin>>n) 
    { 
        while(n--) 
        { 
            cin>>f; 
            int sum=0; 
            while(f--) 
            { 
                cin>>a>>b>>c; 
                sum+=a*c; 
            } 
            cout<<sum<<endl; 
        } 
    } 
    return 0; 
} 

 

补充:软件开发 , C++ ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,