complex in Java

There's an Apache Commons one called Complex. the JDK does not has one.
```
Complex c = new Complex(1.0, 3.0); // 1 + 3i
```