필터 지우기
필터 지우기

How to make a repeat process for a statement in a while loop when condition is not met?

조회 수: 1 (최근 30일)
Right now I am stuck as to how do I return z to asking for the conversion method if the 'C to F' is not entered correctly or nothing is entered. Help please.
clear,clc
x =[];
while isempty(x)
x = input('Make a choice(imperial or metric): ','s');
if strcmp(x,'imperial')
y = input('Please enter a value: ');
z = input('Conversion method (C to F): ','s');
if strcmp(z,'C to F')
convert(x,y,z)
end
elseif strcmp(x,'metric')
y = input('Please enter a value: ');
z = input('Conversion method (C to F): ','s');
else
x =[];
disp('Please make sure the spelling are correct!')
end
end

채택된 답변

Walter Roberson
Walter Roberson 2018년 4월 16일
편집: Walter Roberson 2018년 4월 17일
z = '';
while ~strcmp(z,' C to F')
 z = input(...)
 if strcmp(...)
   Convert...
 else
  Complain 
  z = '' 
 end 
end 

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by