need help on dis for loop

guys i need some help
i have dis program wch i took from dey net for my project n i'm not gud at c++ o as wonderin if ne1could help me out wid dis part of d for loop wch goes like
for(i=270;i<271;i++)
{
outtextxy(190,270,"OUR PROJECT");
}
i got no idea wat lt means n have seen it many source codes but nva understood wat it meant n also it shows it as an error also says;) both of dem are missin
It's a bit tough to tell what you are trying to say with that grammer.

I don't know what the &lt is for (maybe another language?). But what I can see is that your for loop has 3 semi-colons. It should have 2 semi-colons. The first spot should have what initially happens, the second spot should have the condition that will keep you in the loop and the last spot has what will happen at the end of the loop.
You will never be a good programmer, stop now.
And why are you going to be putting the same text in the same spot 270 times?
lolcats r u luk de buk o jus gess lol
if should be

1
2
3
4
//for(i=270;i<271;i++)
//{
outtextxy(190,270,"OUR PROJECT");
//} 


it is outputtting the text "OUR PROJECT" at x = 190 and y = 270
Topic archived. No new replies allowed.