Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
float a,b,h;
cin>>a>>b>>h;
cout<<"Pole powierzchni bocznej: "<<a * b * 2<<endl;
cout<<"Objetosc: "<<a * a * h / 3;
return 0;
}
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
float a,b,h;
cin>>a>>b>>h;
cout<<"Pole powierzchni bocznej: "<<a * b * 2<<endl;
cout<<"Objetosc: "<<a * a * h / 3;
return 0;
}
Wyjaśnienie: