Răspuns :
#include <iostream>
#include <cmath>
using namespace std;
int main(){
int l;
cin >> l;
cout << "At: " << 6*l*l << "\n" <<
"V: " << l*l*l << "\n" <<
"d: " << l*sqrt(3);
return 0;
}
#include <cmath>
using namespace std;
int main(){
int l;
cin >> l;
cout << "At: " << 6*l*l << "\n" <<
"V: " << l*l*l << "\n" <<
"d: " << l*sqrt(3);
return 0;
}
#include
#include
using namespace std;
int main() {
double l, V, d, At;
cin>>l;
At=6*l*l;
V=l*l*l;
d=l*sqrt(3);
if(l>0)
{cout< cout< cout< else
return 0;
}
#include
using namespace std;
int main() {
double l, V, d, At;
cin>>l;
At=6*l*l;
V=l*l*l;
d=l*sqrt(3);
if(l>0)
{cout< cout< cout< else
return 0;
}