我看了半天,还是找不出错在哪
#include<iostream>using namespace std;
int main()
{
int a,b,c;
int f(int x,int y,int z);
cin>>a>>b>>c>>endl;
c=f(a,b,c);
cout<<c<<endl;
return 0;
}
int f(int x,int y,int z)
{
int m;
if(x<y)m=x;
else m=y;
if(z<m)m=z;
return(m);
}
然后下面出现这样的语句:\Users\Administrator\Desktop\abc.cpp(7) : error C2679: binary '>>' : no operator defined which takes a right-hand operand of type '' (or there is no acceptable conversion)
执行 cl.exe 时出错.
abc.obj - 1 error(s), 0 warning(s)
之前弄了两个带有cout小程序,能用,而这个就不行了。第一次接触C++,找不出来。