Home
О нас
Products
Services
Регистрация
Войти
Поиск
Djalav
@Djalav
June 2022
2
6
Report
СРОЧНО! ДАЮ 30 БАЛЛОВ!
Найти удвоенное 13 число Фибоначчи
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
xDmitryINFO
Или вручную:
1 число: 1
2: 1
3: 1+1=2
4: 2 + 1 = 3
5: 3 + 2 = 5
6: 5 + 3 = 8
7: 8 + 5 = 13
8: 8 + 13 = 21
9: 21 + 13 = 34
10: 34 + 21 = 55
11: 55 + 34 = 89
12: 89 + 55 = 144
13: 144 + 89 = 233
233 * 2 = 466
2 votes
Thanks 1
ali07
Verified answer
var
ch, ch1, n, i, ch2: integer;
begin
ch:=0;
ch1:=1;
For i:=1 to 13 do
begin
ch2:=ch1;
ch1:=ch;
ch:=ch1+ch2;
end;
writeln(ch*2);
end.
Ответ: 466
1 votes
Thanks 1
×
Report "СРОЧНО! ДАЮ 30 БАЛЛОВ! Найти удвоенное 13 число Фибоначчи..."
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
1 число: 1
2: 1
3: 1+1=2
4: 2 + 1 = 3
5: 3 + 2 = 5
6: 5 + 3 = 8
7: 8 + 5 = 13
8: 8 + 13 = 21
9: 21 + 13 = 34
10: 34 + 21 = 55
11: 55 + 34 = 89
12: 89 + 55 = 144
13: 144 + 89 = 233
233 * 2 = 466
Verified answer
varch, ch1, n, i, ch2: integer;
begin
ch:=0;
ch1:=1;
For i:=1 to 13 do
begin
ch2:=ch1;
ch1:=ch;
ch:=ch1+ch2;
end;
writeln(ch*2);
end.
Ответ: 466