Berechnung der MwSt
static void Main()
{
char nochmal = 'n';
do
{
int Warenwert, MwSt, Endpreis; 1)
Console.WriteLine(" MwSt. Berechnung"); 2)
Console.WriteLine();
Console.Write("Warenwert in Euro: ");
Warenwert = Convert.ToInt32(Console.ReadLine ()); 3)
Console.WriteLine();
Console.Write("MwStin Prozent: ");
MwSt = Convert.ToInt32(Console.ReadLine()); 4)
Console.WriteLine();
Endpreis = Warenwert + (Warenwert/100 * MwSt); 5)
Console.Write("Endpreis in Euro: " + Endpreis); 6)
Console.WriteLine("nnNochmal? [j = ja / n = nein]");
nochmal = Convert.ToChar(Console.ReadLine().ToLower());
} while (nochmal == 'j');
Console.ReadLine ();
}
von Johannes und Stefan |