Repeating loop until input conditions are met

18 visualizaciones (últimos 30 días)
Soren Lundheim
Soren Lundheim el 25 de Mzo. de 2020
Comentada: Soren Lundheim el 25 de Mzo. de 2020
For my program, I need to input two sides and one angle of a triangle. If the angle input is above 180 degrees, I need to loop back to input a new angle. This process needs to repeat until the condition a1<180 is met.
Here's my program so far, which only prompts the user that the triangle is impossible once
I've looked at other forums on "looping until condition is met", but very few of them deal with inputs, so I don't really know where to begin with a for/while loop.
  1 comentario
Subhamoy Saha
Subhamoy Saha el 25 de Mzo. de 2020
Editada: Subhamoy Saha el 25 de Mzo. de 2020
You have to check whether angle is > 180. If yes then again take input for angle certainly after displaying the message.
take input for angle
start the loop: check whether input value>180
display msg
again take input for angle
end the loop
NB Direct answers cannot be given for textbook problems.

Iniciar sesión para comentar.

Respuesta aceptada

Sriram Tadavarty
Sriram Tadavarty el 25 de Mzo. de 2020
Editada: Sriram Tadavarty el 25 de Mzo. de 2020
Hi,
One small change that can be done is to place a while loop for the a1 input and then if a1 < 180, break the loop.
Prototype code:
while 1
a1 = input('Angle in degrees:');
if a1 < 180
break;
else
disp('Triangle is impossible...');
end
end
Hope this helps.
Regards,
Sriram

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by