Ответ:
Объяснение:
#include <iostream>
using namespace std;
int main(){
int a,b,h;
cin >> a >> b >> h;
int S = (a+b)/2*h;
cout << S;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
#include <iostream>
using namespace std;
int main(){
int a,b,h;
cin >> a >> b >> h;
int S = (a+b)/2*h;
cout << S;
}