ans

liujunhao 2023-12-17 20:51:10 5 返回题目

#include<bits/stdc++.h>

using namespace std;

int main(){

double a,b,c;
cin>>a>>b>>c;
printf("%.3f", (a+b)*c/2);
return 0;

}

{{ vote && vote.total.up }}