Can you tell me why this code is incorrect ?
#include iostream (*I have removed the brackets <>)
using namespace std;
int main()
{ int n,x,z; for(int i=1;i<=10;i++)
{cin>>n;
while(n>0) { x=(n/2)+(n/3)+(n/4);
z=max(x,n);
cout< < z;} } return 0; (*Actually no space between <<)
}