Difficulty: Low
Title: Utensils
Description:
Camryn is unpacking a box of utensils. The total weight of the box of utensils is x lbs and it contains x forks.
Output:
Input the weight of each box: 4
Input the number of forks per box: 16
Each fork weights: 0.25 lbs
Difficulty: Low
Title: Moving
Description:
Carrie is packing to move to another apartment down the hall. She packed x boxes. Each box can hold up to z lbs. The trolley she is using to move can take up to 32 lbs. How many trips does it take her to move if she only has one trolley?
Topics Covered
Output:
Input the number of boxes: 24
Input how much weight each box can hold 8
Carrie can take 4 boxes per trip
Carrie must make 6 trips
Difficulty: Low
Title: Office Supplies
Description:
An office supply company truck can take up to x lbs of cargo. Oliver packed z boxes; each box can weigh up to 34 lbs. After Oliver loaded all the boxes, the truck can take about ___________ lbs more of cargo?
Output:
Input the total lbs the truck can deliver: 4530
Input how many boxes Oliver loaded: 50
Oliver can carry 2,830 more pounds of cargo
Hannah's first box weight ____ and the second box weighed ____
Difficulty: Medium
Title: Reverse the Numbers
Description:
Write a program to reverse the digits of a given integer.
Output:
Input: 123
321
Difficulty: Medium
Title: Surface Area
Description:
Write a program to calculate the Surface Area of a Cylinder:
The surface area of a cylinder can be calculated using the formula:
A = 2πrh + 2 πr2
Output:
Radius: 5
Height: 20
The area is: 785.40
Difficulty: Medium
Title: BMI
Description:
Write a program to calculate a users Body Mass Index (BMI) using the following formula:
weight (lb) / [height (in)]2 x 703
Output:
Weight lbs: 37
Weight oz: 4
Height: 41.5
BMI: 15.2