+ 1
How to change the Month 01, 02, 03,... into January, February, March,etc in output?
I used the switch method but it doesn't work, how can i make it possible,? P.S. crdts to Mr. Matheus Sanches for the original work, P.P.S. in the output- Birthday section should show the name of month rather than the number https://code.sololearn.com/WAHZakT8hT9b/?ref=app
2 Antworten
+ 8
Fixed. Two problems were there:
1. cases are in integer, but input was in String. So, parsed it
2. You printed mee in input but didn't assign the corresponding month names to it.
btw, me = 93.9% angel :D
https://code.sololearn.com/WDxoJ0LPZeln/#html
+ 1
i see, thanks a lot :)