2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -76,8 +76,8 @@ public class Approx {
public static void main(String[] args){
Approx x1 = new Approx(100, 1.1);
Approx x2 = new Approx(50, 1.2);
Approx y1 = new Approx(200, 2.2);
Approx y1 = new Approx(50, 1.2);
Approx x2 = new Approx(200, 2.2);
Approx y2 = new Approx(100, 2.3);
x1.sub(x2).pow(2).add(y1.sub(y2).pow(2)).pow(0.5);