1.用MFC创建一个e的文件
2.打开文件中的e files中source files。
int nCount=1;
int x=10,y=10,temp=10;
CString str;
for(;nCount<101;++nCount)
{
str.Format("%d",nCount);
pDC->TextOut(x,y,str);
x+=30;
if(nCount==temp)
{
y+=30;
temp+=10;
x=10;
}
}