While or for loop?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mark Coughlin
el 30 de Abr. de 2020
Editada: Mehmed Saad
el 30 de Abr. de 2020
Hi, I want to write a script which will evaluate the lowest factorial which is greater than the user's input, and I am unsure of whether to use a while or a for loop to execute this. Any help is always much appreciated! This is my code so far:
num=input('Enter a number: ');
n=0;
while (true)
n=n+1;
f(1i)=factorial(n);
if f(1i)>num
formatSpec='The factorial greater than %d is %d';
fprintf(formatSpec,num,f);
else
continue
end
end
1 comentario
Guillaume
el 30 de Abr. de 2020
Typically, you'd use a while loop if you don't know in advance how many times you're going to loop, and a for loop if you do. Therefore in your case, a while loop would be more appropriate.
However, note that you can always convert one to the other.
Respuesta aceptada
Mehmed Saad
el 30 de Abr. de 2020
- Use while loop
- instead of using if else and continue break in while(true), add condition in while loop
- Print after the while loop ends
PS: you need a break condition for a while(true) type loop otherwise it will continue runing forever
Más respuestas (0)
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!