Home
О нас
Products
Services
Регистрация
Войти
Поиск
ATA2000
@ATA2000
July 2022
1
16
Report
Найти произведение положительных чисел значение которых не превышают 5 из 10 введённых Срочно надо!!!
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
AnonimusPro
Verified answer
Program n1;
var a,p,i: integer;
begin
p:=1;
for i:=1 to 10 do
begin
readln(a);
if (a>0) and (a<=5) then p:=p*a;
end;
writeln(p);
end.
3 votes
Thanks 1
×
Report "Найти произведение положительных чисел значение которых не превышают 5 из 10 вве..."
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
Verified answer
Program n1;var a,p,i: integer;
begin
p:=1;
for i:=1 to 10 do
begin
readln(a);
if (a>0) and (a<=5) then p:=p*a;
end;
writeln(p);
end.