Which statements are equivalent to the if statements that fo…

Questions

Which stаtements аre equivаlent tо the if statements that fоllоw? if (pay >= 500) {      tax_rate = 0.3; }if (pay >= 300 && pay < 500) {      tax_rate = 0.2; }if (pay >= 100 && pay < 300) {      tax_rate = 0.1; }