004
12.10.2004, 19:38 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft... (Operator)
|
habs mal vernünftig gemacht
C++: |
#include <iostream> //C++ Standard Input/Output #include <cmath>
const double PI = 3.14159;
float flaeche(float); float volumen(float, float);
int main(){
float f,v,r,h; char dummy;
std::cout << " Bitte geben Sie den Radius ein: "; std::cin >> r;
std::cout << " Bitte geben sie die Hoehe ein: "; std::cin >> h;
f= flaeche(r); v = volumen(r,h);
std::cout << " Die Fläche (wovon auch immer) beträgt: " << f <<std::endl; std::cout << " Der Flächeninhalt beträgt: " << v <<std::endl;
std::cin>>dummy;
return 0; }
float flaeche(float r){return PI*r*r;} //fläche vom Kreis float volumen(float r,float h){return (2*PI*r*r)+(2*PI*r*h);} //was auch immer das für ein volumen sein soll
|
-- ...fleißig wie zwei Weißbrote |