write script( a for loop that multiplies all evens numbers from 2 to 10)
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Please help
0 comentarios
Respuestas (2)
Andriy Kavetsky
el 24 de Oct. de 2016
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 comentarios
Andrei Bobrov
el 24 de Oct. de 2016
Editada: Andrei Bobrov
el 24 de Oct. de 2016
prod(2:2:10);
0 comentarios
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!