next up previous
Nächste Seite: Übung: Implementierung der Vektorklasse Aufwärts: Visual C++ Vorlesung Vorherige Seite: Können wir auch binäre

Wie sieht nun ein Hauptprogramm aus?


void main(
) {
  CVector a,b,c;
  double  d;

  cin >> a;
  cin >> b;
  cout << a+b << endl;  // sum
  c = a+a;
  cout << c << endl;    // after assignment
  d = a*b;
  cout << d << endl;    // dotproduct
  if(!a.IsNullVector()) {
    c = !a;
    cout << c << endl;  // normalization
  }
}




1999-12-13