12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ГончароваНЕ_ПР3
- {
- internal class zadanie3
- {
- public int time;
- public zadanie3(int time)
- {
- this.time = time;
- }
- public void countbactrria()
- {
- int count = 1;
- for (int i = 1; i <= time; i++)
- {
- count = count * 2;
- }
- Console.Write($"В течении {time} минут/ы образуется {count} бактерия/ий/ии");
- }
- }
- }
|