write script( a for loop that multiplies all evens numbers from 2 to 10)

5 ビュー (過去 30 日間)
sothuon thorn
sothuon thorn 2016 年 10 月 24 日
編集済み: Andrei Bobrov 2016 年 10 月 24 日
Please help

回答 (2 件)

Andriy Kavetsky
Andriy Kavetsky 2016 年 10 月 24 日
x=2:10;
x=x(mod(x,2)==0)
res=1;
s=size(x)
for i=1:s(1) for j=1:s(2)
res=res*x(i,j);
end
end

Andrei Bobrov
Andrei Bobrov 2016 年 10 月 24 日
編集済み: Andrei Bobrov 2016 年 10 月 24 日
prod(2:2:10);

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by