www.rinner.st

the blog/wiki/website/homepage/internetpräsenz of Stefan Rinner

Wednesday, Nov 14, 2001

heut um 7:50 einen installateur in der wohnung, morgen steh i um 5:00 auf - AAAAAAA
(define (square x) (\* x x))
(define (sumofmaxsquare x y z) (
+ (square (if (= x (min x y z)) 0 x)) (square (if (= y (min x y z)) 0 y)) (square (if (= z (min x y z)) 0 z))
))

bzw. etwas mehr in funktionen aufgeteilt:
(define (square x) (\* x x))
(define (sumofsquares x y) (+ (square x) (square y)))
(define (isMin x a b c) (= x (min a b c)))
(define (sumOfMaxSqaure x y z) (sumofsquare (if (ismin x x y z) x) (if (ismin y x y z) y) (if (ismin z x y z) z)
))