Home
О нас
Products
Services
Регистрация
Войти
Поиск
ATA2000
@ATA2000
July 2022
1
13
Report
Дан одномерный целочисленный массив . Найти произведение элементов массива , меньших 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: array[1..10] of integer;
i: integer;
p: real;
begin
randomize;
write('массив: ');
p:=1;
for i:=1 to 10 do
begin
a[i]:=random(41)-20;
write(a[i],' ');
if a[i]<10 then p:=p*a[i];
end;
writeln;
write('произв. <10: ',p);
end.
1 votes
Thanks 0
×
Report "Дан одномерный целочисленный массив . Найти произведение элементов массива , мен..."
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: array[1..10] of integer;
i: integer;
p: real;
begin
randomize;
write('массив: ');
p:=1;
for i:=1 to 10 do
begin
a[i]:=random(41)-20;
write(a[i],' ');
if a[i]<10 then p:=p*a[i];
end;
writeln;
write('произв. <10: ',p);
end.