我是新手,请指教一个问题
纸上做了很多程序,自我感觉不错,但是我在电脑上打出来后,编译的时候告诉我0错误0警告,但是一执行就成了2错误0警告.
不只是一个程序出现这种问题,好多啊,概率是40%啊.
请大哥们指教一下,是我装的这个VC企业版有问题,还是自己的编写有错误有问题啊.
贴出来 程序绝对没问题啊
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
int f(int x,int y);
cout<<"Please input 2 numbers:"<<endl;
cin>>a>>b;
c=f(a,b);
cout<<"the sum of these 2 numbers is:"<<c<<endl;
return 0;
}
int f(int x,int y)
{
int z;
z=x+y;
return(z);
}
编译后:0 error(s), 0 warning(s)
执行后:
Linking...
1-9调用函数求2数和.obj : error LNK2005: _main already defined in 1-8两数求和.obj
Debug/1-8两数求和.exe : fatal error LNK1169: one or more multiply defined symbols found
Error executing link.exe.
1-8两数求和.exe - 2 error(s), 0 warning(s)
我是新人 不要嘲笑我啊.我是照着书上练习做的.