Computer Science, asked by yuvasreemuppavarapu, 1 day ago

VideoShare" is an online video sharing platform. The company has decided to rate its users' channels based on the sum total of the number of views received online and the subscribers. This sum total is referred to as User Points. The rating will be given according to the below charts: User Points Rating 30-50 Average 51-60 Good 61-80 Excellent 81-100 Outstanding The whole process is automated and is carried out by the company's system. Write an algorithm to find the rating of the given user's channel based on the user points.

Answers

Answered by sindiyaas
4

Answer:idk

Explanation:

Answered by shilpa85475
0

Explanation:

1. start.

2. int total_no_of_views, no_of_sub, user_points;

3. enter and accept the no of views and no of subscribers from the user.

3. user_points= no_of_views + no_of_sub;

4. if the user_points >30 and  user_points  < 50 then the rating will be Average.

5.  if the user_points >51 and  user_points  < 60 then the rating will be Good.

6.   if the user_points > 61 and  user_points  < 80 then the rating will be Excellent.

7.  if the user_points >81 and  user_points  < 100 then the rating will be Outstanding.

8. Now according to the above condition rate the channel.

9. Stop.

The rating will be given according to the below charts:

User Points Rating 30-50 Average

51-60 Good

61-80 Excellent

81-100 Outstanding

Similar questions