I'm doing an exercise in MATLAB, but I always come across an error about the syntax of the print
function, it says that I can not put strings and integers together to be shown, but I've seen similar examples
Follow the code
meses = ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'];
mes = input('Valor de 1 a 12');
if 1 <=mes<=12
print('o Mês correspondente é', meses(mes))
else
print('o calendário só tem 12 meses')
end
How would the correct syntax be?