homeduke Prof. Dr. Uwe Schmidt FH Wedel

Die Datei: Square.java


weiter
   1public
   2class Square
   3  implements RealFunction
   4{
   5  public
   6  double at(double x) {
   7    return
   8      x * x;
   9  }
  10
  11  public
  12  String toString() {
  13    return "x * x";
  14  }
  15}
  16

Die Quelle: Square.java


Letzte Änderung: 16.06.2008
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel