int d = year%100;
    int c = year/100;
    int valueA = (int)(((13*monthnumber)-1)/5);
    int valueB = (int) d/4;
    int valueC = (int) c/4;
    int weekDay = (d + valueA + d + valueB + valueC - 2*c);
    int remainder %= weekDay/7; 
im trying to use the modulus assignment operator but keep getting a system error saying that an '=' was expected instead of '%='
code in question is the last line
please help
 
     
     
     
    