Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Bomba
- {
- public static void Main()
- {
- Console.WriteLine("Podaj od jakiej liczby mam zacząć odliczanie");
- int odliczanie = int.Parse(Console.ReadLine());
- for (int i = odliczanie; i > 0; i--)
- {
- Console.Clear();
- Console.WriteLine(i);
- Thread.Sleep(1000); // zatrzymaj program
- }
- Console.WriteLine("Bum!!!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement