1 class Operations { 2 int operations(byte argB, short argS, int argI, long argL, float argF, double argD) { 3 return (int)(((-argI*argL)<<((argS-argB)&0xff)) + argF/argD); 4 } 5 }