write script( a for loop that multiplies all evens numbers from 2 to 10)
5 ビュー (過去 30 日間)
古いコメントを表示
Please help
0 件のコメント
回答 (2 件)
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!