Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- int betrag;
- int[] scheine = new int[] {5, 10, 20, 50, 100, 200, 500};
- do{
- Console.WriteLine("Geldautomat");
- Console.WriteLine("===========\n");
- Console.Write("Bitte geben Sie den gewünschten Betrag in Euro ein:\t");
- betrag = Convert.ToInt32(Console.ReadLine());
- if (betrag < 4 || betrag > 10000 || betrag % 5 != 0)
- {
- Console.Clear();
- Console.WriteLine("\n\nFalsche Eingabe (groesser als 10000 oder kein vielfaches von 5)!\n\n");
- }
- }while(betrag < 4 || betrag > 10000 || betrag % 5 != 0);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement