All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jostnet.ZahlAlsWort.Millionen Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package de.jostnet.ZahlAlsWort;
/**********************************************************************
 * Copyright (c) by Heiner Jostkleigrewe
 * 
 * [email protected]
 **********************************************************************/

class Millionen
{
	static String get(Zahl zahl)
	{
		String millionen = "";
		if (zahl.getMillionenStellen() == 1)
		{
			millionen = "einemillion";
		}
		else
		{
			millionen = ZahlAlsWort.get(new Zahl(zahl.getMillionenStellen()))
					+ "millionen";
		}

		millionen += Tausender.get(zahl);

		return millionen;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy