error during compilation

I am getting this ERROR "undefined symbol x,y,z" and "statement missing" in the following program

#include<iostream.h>
#include<conio.h>
int main()
{
clrscr()
int x,y,z,max;
cout<<"enter the three number";
cin>>x>>y>>z;
max=x;
if(y>max)
max=y;
if(z>max)
max=z;
cout<<"\n"<<"the largest of"<<x<<","<<y<<"and"<<z<<"is"<<max;
return 0;
}
You have forgot the semicolon after the function call on the first line of main.
Thanks for your help
Topic archived. No new replies allowed.