int vss=(pulseIn(vssp, HIGH)*(1/90))**(-1); //This line works fine
while(vss<5){
int vss=(pulseIn(vssp, HIGH)*(1/90))**(-1); //This is where I get the error
}
I get the error "type argument of unary '*' (have 'int')" when I try to verify the code and have no idea what it means. This is my first time programming in anything other than python so the more information you have about what i'm doing wrong, the better.