
Answer:
C++
Explanation:
#include <iostream>
int main() {
  int zipoids, tax = 0;
  cout<<"Enter Zipoids earned: ";
  cin>>zipoids;
  // Compute tax
  if ((zipoids > 5000) && (zipoids <= 10000))
    tax = 10;
  else if ((zipoids > 10000) && (zipoids <= 20000))
    tax = 15;
  else
    tax = 20;
  // Output tax
  cout<<endl;
  cout<<"Tax: "<<tax<<"%";
  return 0;
}
To compute the adjusted pay, you need to have the original pay.
Hope this helps.