537 cout <<
"TRIANGULO: " << setiosflags(ios::fixed) << setprecision(3) << a * c / 2 << endl;
538 cout <<
"CIRCULO: " << setiosflags(ios::fixed) << setprecision(3) << c * c * 3.14159 << endl;
539 cout <<
"TRAPEZIO: " << setiosflags(ios::fixed) << setprecision(3) << (a + b) * c / 2 << endl;
540 cout <<
"QUADRADO: " << setiosflags(ios::fixed) << setprecision(3) << b * b << endl;
541 cout <<
"RETANGULO: " << setiosflags(ios::fixed) << setprecision(3) << a * b;