Skip to content

Instantly share code, notes, and snippets.

View bellackn's full-sized avatar
🦆

Nico Bellack bellackn

🦆
View GitHub Profile
@bellackn
bellackn / Polynom.java
Last active May 13, 2018 13:05
Create a polynom and do some calculations with it.
// Polynom.java
/* Anmerkung: In diesem Programm werden keine negativen Koeffizienten erzeugt,
* d.h., dass Polynome mit positivem Grad niemals Nullstellen besitzen.
*
* Außerdem wird die Nullstellenberechnung bei sehr hohem Grad des Polynoms
* ungenau, was wohl an Rundungsfehlern liegt.
*/
import java.util.*;