208k views
0 votes
The average of 90 80 and 40 is 70. How can I code this to make it userfriendly as well?

The average of 90 80 and 40 is 70. How can I code this to make it userfriendly as-example-1

1 Answer

2 votes

Lets use python


\tt a=90


\tt b=80


\tt c=40


\tt Q=(a+b+c)/3


\tt print(

User Edsamiracle
by
4.5k points