zadanie3.cs 642 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ГончароваНЕ_ПР3
  7. {
  8. internal class zadanie3
  9. {
  10. public int time;
  11. public zadanie3(int time)
  12. {
  13. this.time = time;
  14. }
  15. public void countbactrria()
  16. {
  17. int count = 1;
  18. for (int i = 1; i <= time; i++)
  19. {
  20. count = count * 2;
  21. }
  22. Console.Write($"В течении {time} минут/ы образуется {count} бактерия/ий/ии");
  23. }
  24. }
  25. }