Computer Science, asked by kratisinha9, 6 months ago

write a pseudocode that read the marks of ten students and displays average of marks​

Answers

Answered by shubhang1206
2

Explanation:

Begin

1. Use variable i of the type integer

2. Use variables x, mean and sum of the type floating-point

3. Initialise the variable sum to the value, 0

4. for (i = 1, i 10, i = + 1)

Input x sum = sum + x end for

5. mean = sum/10.0

6. Print mean

7. End programme.

Similar questions