The < is an html entity that represents the less than (<) sign. Your for(int i=0;i < 1000; i++) is just for(int i=0;i < 1000; i++) in html.
solved What’s the meaning of this kind of loop: for(int i=0;i < 1000; i++)
The < is an html entity that represents the less than (<) sign. Your for(int i=0;i < 1000; i++) is just for(int i=0;i < 1000; i++) in html.
solved What’s the meaning of this kind of loop: for(int i=0;i < 1000; i++)