How to add multiple if statements
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jan Kyle Dismas
el 12 de Feb. de 2021
Comentada: Jan Kyle Dismas
el 12 de Feb. de 2021
So i was trying to do an age calculator, so i wanted it to detect strings and numerical value, then if it detected a string it will message that ' it is invalid', but if the inputed value is in numerical, but since im still on the days of the month i wanted to limit all value inputed below 31 days and if the user input greater than 31 it will also message an error. i already had progress with the code detecting if it is a string or number, but the problem is the detecting if the number inputed is below 31
So here is the code
function [day]=bdaycalcu
disp ('What day did you born?');
day= (' ');
BdayDate= input (day, 's');
%this part detects if the user input a string or a value
if ~isnan(str2double(BdayDate))
%if the user input a value, it will also detect if it is below 31, if it is go to bmonthcalcu function
bmonthcalcu;
%if the user input a string it will ask again
else
disp('This is not a valid answer')
bdaycalcu;
end
end
0 comentarios
Respuesta aceptada
Geoff Hayes
el 12 de Feb. de 2021
Jan - I think that you just need to add a couple of conditions to your if statement. You would need to check that the input is numeric (which you are doing) AND is an integer (see isinteger) AND is greater than 0 AND less than our equal to 31. You can use a logical operator found here to AND your conditions.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings 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!