/**
Klasse zum errechnen der Cent-Stuecke
*/
public class Cent {
Gibt aus, wie viele 20-Cent stuecke optimal in einem Geldbetrag enthalten sind
public static int zaehle20CentStuecke(int cent) {
return cent % 100 / 20;
}