TORONTO KIDS COMPUTER CLUB | Monday 17:30 Python Practice – 22.11.14.
21410
post-template-default,single,single-post,postid-21410,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

Monday 17:30 Python Practice – 22.11.14.

19 Nov Monday 17:30 Python Practice – 22.11.14.

Question:

Write a function luckySum(a, b, c) to calculate sum of given 3 int values, a b c. The function will have a return value of their sum. However, if one of the values is 13 then it does not count towards the sum and values to its right do not count. So for example, if b is 13, then both b and c do not count.


Sample Input 1:

a: 1
b: 2
c: 3

Sample Output 1
The lucky sum is 6


Sample Input 2:

a: 1
b: 2
c: 13

Sample Output 2:
The lucky sum is 3

(Because c is 13, c does not count towards the sum)


Sample Input 3:

a: 1
b: 13
c: 3

Sample Output 3
The lucky sum is 1

(Because b is 13, both b and c does not count towards the sum)

No Comments

Sorry, the comment form is closed at this time.