Advertisement
Cassimus

Bomba

Jan 25th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Bomba
  2. {
  3. public static void Main()
  4. {
  5. Console.WriteLine("Podaj od jakiej liczby mam zacząć odliczanie");
  6. int odliczanie = int.Parse(Console.ReadLine());
  7.  
  8. for (int i = odliczanie; i > 0; i--)
  9. {
  10. Console.Clear();
  11. Console.WriteLine(i);
  12. Thread.Sleep(1000); // zatrzymaj program
  13. }
  14. Console.WriteLine("Bum!!!");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement