#include
using namespace std;
const int MAXN=1010;
const int MAXM=1010;
struct Matrix{
int m,n;
int a[MAXN][MAXM];
void clear(){
n=m=0;
memset(a,0,sizeof(a));
}
Matrix operator + (const Matrix &b) const{
Matrix tmp;
tmp.n=n;tmp.m=m;
for (int i=0;i
return tmp;
}
Matrix operator -(const Matrix &b) const{
Matrix tmp;
tmp.n=n;tmp.m=m;
for (int i=0;i
return tmp;
}
Matrix operator *(const Matrix &b)const{
Matrix tmp;
tmp.clear();
tmp.n=n;tmp.m=b.m;
for (int i=0;i
return tmp;
}
};
生成显示:
1>------ 已启动生成: 项目: cecil.cpp, 配置: Debug Win32 ------
1>生成启动时间为 2013/6/22 11:30:28。
1>InitializeBuildStatus:
1> 正在对“Debug\cecil.cpp.unsuccessfulbuild”执行 Touch 任务。
1>ClCompile:
1> 所有输出均为最新。
1>MSVCRTD.lib(crtexe.obj) : error LNK2019: 无法解析的外部符号 _main,该符号在函数 ___tmainCRTStartup 中被引用
1>c:\users\weakhaonan\documents\visual studio 2010\Projects\cecil.cpp\Debug\cecil.cpp.exe : fatal error LNK1120: 1 个无法解析的外部命令
1>
1>生成失败。
1>
1>已用时间 00:00:00.39
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
怎么解决?