Home
О нас
Products
Services
Регистрация
Войти
Поиск
Михаил1122
@Михаил1122
July 2022
1
7
Report
1. Даны действительные число аи натуральное число n. Вычислить
Р = а (а + 1)...(а + n -1)
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
HRAshton
var
a, P: real;
n, i: integer;
begin
P := 1;
readln(a, n);
for i := 0 to n - 1 do
P *= a + i;
writeln(P);
end
.
1 votes
Thanks 1
×
Report "1. Даны действительные число аи натуральное число n. Вычислить Р = а (а + 1)......"
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
a, P: real;
n, i: integer;
begin
P := 1;
readln(a, n);
for i := 0 to n - 1 do
P *= a + i;
writeln(P);
end.