Instalar Steam
iniciar sesión
|
idioma
简体中文 (Chino simplificado)
繁體中文 (Chino tradicional)
日本語 (Japonés)
한국어 (Coreano)
ไทย (Tailandés)
български (Búlgaro)
Čeština (Checo)
Dansk (Danés)
Deutsch (Alemán)
English (Inglés)
Español - España
Ελληνικά (Griego)
Français (Francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (Húngaro)
Nederlands (Holandés)
Norsk (Noruego)
Polski (Polaco)
Português (Portugués de Portugal)
Português - Brasil (Portugués - Brasil)
Română (Rumano)
Русский (Ruso)
Suomi (Finés)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Informar de un error de traducción
#include <iomanip>
#include <math.h>
using namespace std;
int main() {
double radius;
double height;
double volume;
double area;
cout << fixed << setprecision(1);
cout<< "what is the radius number ? \n" << endl;
cin>> radius;
cout<< "what is the height number ? \n" << endl;
cin>> height;
volume = M_PI * pow(radius, 2) * height;
area = 2 * M_PI * radius * height + 2 * M_PI * pow(radius, 2);
cout << "Volume: " << volume << " cubic inches" << endl;
cout << "Surface area: " << area << " square inches"<< endl;
return 0;
}