0

Can someone help me out?

There is an app for bike race which provides bonus points for the player. In this app the player has to play the race and on completion, the total kilometers travelled by the player is calculated. Based on this distance travelled, the product of digits in the odd position and also product of digits in the even position is calculated. Whichever is highest, that is the bonus points given to the user. If the product of odd and even position digits are same, then the player should receive double the product as bonus. Example : If the distance travelled is 5632 Product of digits in odd position = 5 * 3 = 15 Product of digits in even position = 6 * 2 = 12 As 15 > 12, the bonus points the player gets is 15. Note : If the input is less than zero, the output should be “Invalid Input”. Sample Input 1 : Enter the distance travelled 8694 Sample Output 1 : Your bonus points is 72 Sample Input 2 : Enter the distance travelled 263 Sample Output 2 : Your bonus points is 12

9th Mar 2020, 6:26 AM
Ashutosh Mulky
Ashutosh Mulky - avatar
1 Answer
0
Hey Ashutosh Mulky if you don't mind showing your attempt and stating precisely where you get stuck
9th Mar 2020, 6:29 AM
✳AsterisK✳
✳AsterisK✳ - avatar