Challenge: Vending Machine
Task
Swipe to start coding
Create a function getSnackPrice that determines the price of a snack in a vending machine based on the snack type and size.
- The function should receive two integers:
snackTypeandsize. - If
snackTypeis 1 (chips):- If
sizeis 1, price is 10; - If
sizeis 2, price is 15; - For any other
size, price is 12.
- If
- If
snackTypeis 2 (chocolate):- If
sizeis 1, price is 20; - If
sizeis 2, price is 25; - For any other
size, price is 22.
- If
- For any other
snackType, price is 0. - The function should return the price as an integer.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 3
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 9.09
Challenge: Vending Machine
Swipe to show menu
Task
Swipe to start coding
Create a function getSnackPrice that determines the price of a snack in a vending machine based on the snack type and size.
- The function should receive two integers:
snackTypeandsize. - If
snackTypeis 1 (chips):- If
sizeis 1, price is 10; - If
sizeis 2, price is 15; - For any other
size, price is 12.
- If
- If
snackTypeis 2 (chocolate):- If
sizeis 1, price is 20; - If
sizeis 2, price is 25; - For any other
size, price is 22.
- If
- For any other
snackType, price is 0. - The function should return the price as an integer.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 3
single