为什么代码对却还提示错误呢??
1>MSVCRTD.lib(crtexew.obj) : error LNK2019: 无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用
1>D:\VS 2010\程序\3\Debug\3.exe : fatal error LNK1120: 1 个无法解析的外部命令
1>  命令已退出,代码为 1120。
代码对了  但提示上面的错误


#include <stdafx.h>
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main ()
{
    for (int i = 0; i < 100; ++ i)
    {
        if (i % 10 == 0)
            cout << endl;
        cout << i << "\t";
    }
    return 0;
}

这是为什么呢??