draw a flow chart and write algorithms description that accept three mark of students and print the mark which greater than the average mark of the students?

I can help you on this by sharing screen. Plz whatsapp me if you are interested

00923215081005

To solve this problem, we can create a flowchart and write an algorithm that accepts three marks of students and prints the mark that is greater than the average mark of the students. Here is how you can do it:

**Flowchart:**

```
Start
|
v
Input marks of three students
|
v
Calculate average mark (sum of marks divided by 3)
|
v
Compare each student's mark with the average mark
|
v
If student's mark is greater than the average mark
|
v
Print the student's mark
|
v
Stop
```

**Algorithm:**

```
1. Start
2. Input mark1, mark2, mark3 // Three marks of students
3. average = (mark1 + mark2 + mark3) / 3 // Calculate average mark
4. if mark1 > average
5. Print mark1
6. if mark2 > average
7. Print mark2
8. if mark3 > average
9. Print mark3
10. Stop
```

To implement this algorithm in a programming language of your choice, you can use conditionals (such as if statements) and arithmetic operations to compare the marks and calculate the average.