Author

My photo
Lucena City, Philippines

Tuesday, November 9, 2010

int count = 31;
int count2 = 0;

for (int i = 0; i <= count; i++)
{
label1.Text += i.ToString() + " ";

if (count2++ == 7)
{
label1.Text += Environment.NewLine;
count2 = 0;
}
}

No comments:

Post a Comment