我需要向用户询问温度,k 或 K 代表开尔文,c 或 C 代表摄氏度,f 或 F 代表华氏度。我怎样才能把所有这些都放在一个循环中?我需要不断询问用户,直到他们输入上述字母之一。这就是我到目前为止所拥有的。
tempType = input('What type of temperature would you like to use: ', 's');
value = ['k','K','c','C','f','F'];
while strcmp(tempType, value) == 1
tempType = input('What type of temperature would you like to use: ', 's');
end