[求助]C++基础问题
#include <iostream.h>
void main()
{
float score;
cout<<"请输入成绩:";
cin>>score;
if(score<0||score>100)cout<<"成绩必须在0~100分之间!";
else if(score<60)cout<<"不及格"<<endl;
else if(score<70)cout<<"及格"<<endl;
else if(score<80)cout<<"中"<<endl;
else if(score<90)cout<<"良"<<endl;
else cout<<"优"<<endl;
}
刚学C++,照着书中例子用VC编了个小程序,但是出现
switch.obj : error LNK2005: _main already defined in 实验.obj
Debug/first.exe : fatal error LNK1169: one or more multiply defined symbols found
执行 link.exe 时出错.
还以为格式不对,结果不是,不知道出错在哪?请高人指点下,谢谢。
[此贴子已经被作者于2006-11-15 21:59:32编辑过]