Draw a flowchart and write a pseudocode of a program that allows the user to input their income amount

The tax structure for the year where as follws
Income is less than M27.730 per annum[M2.310.83 per month]does not pay tax between M27.730 per annum [M2.310.83per annum]and M51.670 per annum[M4.305.83 per month]is taxed at lower rate of 22%

CMC College has many departments like Electrical, Mechanical, Computer Science etc. Read the salary of all the 10 staff working in the Computer Science department and write algorithm, draw flow chart and write a C program to find the average salary using FOR loop.

Electrical,mechanical,computer science

To create a flowchart and pseudocode for the program that calculates taxes based on the user's income, you can follow these steps:

Flowchart:

1. Start
2. Prompt the user to enter their income amount
3. Read the user's input and store it in a variable, let's say "income"
4. Check if the income is less than M27.730 per annum
5. If true, display "No tax payable"
6. If false, check if the income is between M27.730 per annum and M51.670 per annum
7. If true, calculate the tax by multiplying the income by 22% (0.22) and store it in a variable, let's say "tax"
8. Display the tax amount
9. End

Pseudocode:

```
START
DISPLAY "Enter your income amount: "
READ income

// Checking tax structure
IF income < M27,730 THEN
DISPLAY "No tax payable"
ELSE IF income >= M27,730 AND income <= M51,670 THEN
SET tax = income * 0.22
DISPLAY "Tax amount: ", tax
END IF

END
```

Note: Please replace "M27.730 per annum" and "M51.670 per annum" with the actual numeric values according to your tax structure. Also, make sure to adjust the syntax and variable names according to your programming language of choice.