Speaking as a human programmer (i.e. I am not Lint software), your use of "100" there looks fine to me.
Wikipedia has an article (without citations) titled Accepted limited use of magic numbers: IMO your "100" is in the same category as these other "accepted" magic numbers.
This Wiki describing magic numbers says two things.
Firstly,
Practical Magic Number rule: A literal is a not a magic number if the most meaningful variable name for it is the same as the spoken name of the literal.
That's applicable here: you're looking for a named constant like HUNDREDHUNDRED or CENTUMCENTUM.
Secondly, it also suggests loading "magic" numbers (e.g. a "discount rate") from a configuration file:
static final double DISCOUNT_PERCENT = getProperty( "sales.discount_percent" );
static final double DISCOUNT_FACTOR = 1 - (DISCOUNT_PERCENT / 100);
// ...
salePrice = DISCOUNT_FACTOR * regularPrice;
Note that though this example code carefully loaded DISCOUNT_PERCENTDISCOUNT_PERCENT from a configuration, the "100" used to calculate the DISCOUNT_FACTORDISCOUNT_FACTOR is hard-coded.
If you use "100" instead of HUNDREDHUNDRED, it's easier for a programmer to understand, and to verify that it's correct.
IMO the only benefit to using HUNDREDHUNDRED is to find the several methods which use the same magic number (in your example it's used by getPercentgetPercent and getRategetRate).