1
I am doing an exercise in MATLAB, but I always come across an error about function syntax print
, he says I can’t put strings and integers together to be shown, but I’ve seen similar examples
Follows 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
What would be the correct syntax?