Mrs. Biftu has been working in Ambo University Woliso Campus as Network

Administrator for four years. Last year, Biftu received a 4% raise, which brought her
current weekly pay to 9000 ETB. Biftu is scheduled to receive a 3% raise next week.
She wants you to write an Algorithm that will display the amount of her new weekly
pay.
direction
a. Your algorithm should be written both in pseudocode and flow chart.
b. You have to show each and necessary steps considered to solve each problem

Pseudocode:

1. Input Biftu's current weekly pay as current_pay
2. Input the upcoming raise percentage as raise_percentage
3. Calculate the amount of raise: raise_amount = current_pay * (raise_percentage / 100)
4. Calculate Biftu's new weekly pay: new_pay = current_pay + raise_amount
5. Display new_pay as the amount of Biftu's new weekly pay

Flowchart:
1. Start
2. Input current_pay
3. Input raise_percentage
4. Calculate raise_amount = current_pay * (raise_percentage / 100)
5. Calculate new_pay = current_pay + raise_amount
6. Display new_pay
7. End