vault backup: 2023-09-07 14:53:34
This commit is contained in:
@ -72,6 +72,14 @@ let add a b =
|
||||
|
||||
let test x y = (if x> y then x else y ) *(x+y);;
|
||||
|
||||
|
||||
let f a b c =
|
||||
let g x y = (x+y)*(x-y) in
|
||||
if a > b then
|
||||
if b > c then (a+b)*(a-b) else (c+a) *(a-c)
|
||||
else
|
||||
if a > c then (a+b)*(a-b) else (b+c) * (b-c);;
|
||||
|
||||
let f a b c =
|
||||
(if a > b && if b > c then
|
||||
a + b else c + a
|
||||
|
Reference in New Issue
Block a user