011
11.02.2008, 12:28 Uhr
ao
(Operator)
|
Wenn du mit "gehen" meinst, sie sollte übersetzbar sein: Nein, ist sie nicht, denn sie enthält Fehler.
C++: |
//#include <iostream.h> #include <iostream> using namespace std;
float berechneQuadratvolumen(float l,float b, float h) { float v=l*b*h; return v; }; int main() { // unsigned float l; // unsigned float gibts nicht. // unsigned float b; // unsigned float h; float l; float b; float h; cout << "Berechnung Volumen eines Quadrats\n\n" << "Gib nun bitte die Länge ein:"; cin >> l; cin.sync(); cout << "\nGib bitte die Breite ein:"; cin >> b; cin.sync(); cout << "\nGib bitte die Hoehe ein:"; cin >> h; cin.sync(); cout << "\nDas Volumen betraegt " // << berechneQuadratvolumen(float l,float b, float h); // falsche Syntax - dies ist kein Funktionsaufruf << berechneQuadratvolumen(l, b, h); cin.get(); return 0; };
|
|