Instalar o Steam
Iniciar sessão
|
Idioma
简体中文 (Chinês Simplificado)
繁體中文 (Chinês Tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Checo)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol de Espanha)
Español-Latinoamérica (Espanhol da América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polaco)
Português (Brasil)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar problema de tradução
#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;
}