0
Help 2
Sorry guys I really need the help https://code.sololearn.com/c67ZSd8Nu91a/?ref=app
2 Answers
+ 2
typo in line 13
"i i<=n" should be "i<=n"
+ 1
for(i=1;i i<=n; i++) is not valid. Try with
for(i=1;i<=n; i++)
Sorry guys I really need the help https://code.sololearn.com/c67ZSd8Nu91a/?ref=app