Home
О нас
Products
Services
Регистрация
Войти
Поиск
a230104
@a230104
August 2022
1
4
Report
Помогите составить программу . ( циклом )
Одноклеточная амеба каждые 3 часа делится на 2 клетки . Определить сколько клеток будет через n суток ?
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
dishkina
Var
h,a,n:integer;
begin
readln(n);
a:=1;
h:=3;
while h<=n*24 do
begin
a:=a*2;
h:=h+3;
end;
writeln(a);
end.
0 votes
Thanks 1
×
Report "Помогите составить программу . ( циклом ) Одноклеточная амеба каждые 3 часа дели..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
h,a,n:integer;
begin
readln(n);
a:=1;
h:=3;
while h<=n*24 do
begin
a:=a*2;
h:=h+3;
end;
writeln(a);
end.