Untitled
Anonymous
plain_text
11/13/2022 1:34 PM
252 B
13
Indexable
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
cout << "V = " << a * b * c << endl;
cout << "S = " << 2 *(a * b + b * c + a * c) << endl;
}Editor is loading...