[code\]
int a=5;
if (a==7||6||5||4||3||2)

instead of doing

int a=5;
if (a==7||a==6||a==5||a==4||a==3||a==2)
[code/]
is this possible and if not how can you make it possible?