TORONTO KIDS COMPUTER CLUB | PMCA Sunday 14:00 Python Homework 20.08.30.
18258
post-template-default,single,single-post,postid-18258,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Sunday 14:00 Python Homework 20.08.30.

04 Sep PMCA Sunday 14:00 Python Homework 20.08.30.

Question 1:
Ask the user to input 3 numbers and find the average of the three numbers. The formula for average is:

(num1+ num2+ num3)/3

Sample Execution in shell
——————————-

Enter number 1: 7
Enter number 2 : 11
Enter number 3: 6
The average of 3 numbers is 8

Question 2:
You know a family with three children. Their ages form an arithmetic sequence: the difference in ages between the middle child and youngest child is the same as the difference in ages between the oldest child and the middle child. For example, their ages could be 5, 10 and 15, since both adjacent pairs have a difference of 5 years.

Given the ages of the youngest and middle children, what is the age of the oldest child?
The input consists of two integers, each on a separate line. The first line is the age Y of the youngest child. The second line is the age M of the middle child . The output will be the age of the oldest child.

Sample Input 1:
Age Y: 12
Age M: 15

Sample output 1:
Age O: 18

Sample Input 2:
Age Y: 10
AgeM: 10

Sample output 2:
Age O: 10
No Comments

Sorry, the comment form is closed at this time.