de.jostnet.ZahlAlsWort.Millionen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zahlalswort Show documentation
Show all versions of zahlalswort Show documentation
ZahlAlsWort - Library to convert Numbers to Words
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