0
Please tell why the code is giving no output.
2 Antworten
+ 2
You have created an infinite while loop. It's possible that this has caused SL not to print anything when this happens. If you make the loop finite (while x<10) for example, it outputs fine.
+ 1
Thanks..