How to create structure with while loop?

1 visualización (últimos 30 días)
Vy Nguyen
Vy Nguyen el 14 de Oct. de 2015
Respondida: Muthu Annamalai el 29 de Oct. de 2015
Hello,
I don't understand what my instructor means by this, can someone explain for me? Thanks!
Create a script containing a while loop that checks for a yes response to continue (we did this in class – you must set an initial “answer” to ‘y’ at the beginning of the loop, then take a character input at the end of everything to check for exiting. Use strcmpi to compare the “answer” to ‘y’).
  1 comentario
James Tursa
James Tursa el 14 de Oct. de 2015
Please post what you have done so far and then ask specific questions about where you are having trouble. What does a structure have to do with the 'y' while loop?

Iniciar sesión para comentar.

Respuestas (1)

Muthu Annamalai
Muthu Annamalai el 29 de Oct. de 2015
Hello Vy, You are looking for a event loop like this,
answer = 'y'
while strcmpi(answer,'y')
%do something
answer = input('Do you want to continue (y/n) ? ','s')
end
I also recommend you look at the
help input

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!

Translated by