Untitled
unknown
plain_text
3 years ago
189 B
6
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...