003
07.07.2004, 21:50 Uhr
(un)wissender
Niveauwart
|
Ich glaube, dass ist das was du willst. Schau es dir mal an. Statt iostream.h verwendet man heute iostream und namspace std.
C++: |
#include <iostream.h> class Klasse1 { private: double a,b,c; public: Klasse1() {a=0;b=0;}; ~Klasse1() {}; double funktion1(double a,double b); };
double Klasse1::funktion1(double a,double b) { double c=a+b; return c; }
int main() { Klasse1 Zahlenwerte; double a,b; cout<<"Bitte geben sie a und b ein "<<endl; cin>>a>>b; cout << "a+b=" << Zahlenwerte.funktion1(a,b) << endl; return 0; }
|
-- Wer früher stirbt ist länger tot. |